Link to home
Start Free TrialLog in
Avatar of revenuecyclepartners
revenuecyclepartners

asked on

Powershell join domain full automation

I'm trying to create a script to completely automate joining the domain to use during a wds image deployment. I don't want to use the WAIK option because the password is stored in plain text in the xml file. So I've found some powershell scripts online that look like they could work.

This is the command I used to create my encrypted file which contains the password.

---------------------------------------------------------------------------------------

read-host -assecurestring | convertfrom-securestring | out-file C:\securestring.txt

---------------------------------------------------------------------------------------

Here's the script I'm using.

---------------------------------------------------------------------------------------

$domain = "MYDOMAIN.COM"
$password = cat C:\securestring.txt | ConvertTo-SecureString -Force
$username = "$domain\MYUSERNAME"
$credential = New-Object System.Management.Automation.PSCredential($username,$password)
Add-Computer -DomainName $domain -Credential $credential

---------------------------------------------------------------------------------------

Here's the error I'm getting.

---------------------------------------------------------------------------------------

C:\>powershell
Windows PowerShell
Copyright (C) 2009 Microsoft Corporation. All rights reserved.

PS C:\> $domain = "MYDOMAIN.COM"
PS C:\> $password = cat C:\securestring.txt | ConvertTo-Secure
String -Force
ConvertTo-SecureString : Cannot process argument because the value of argument
"input" is invalid. Change the value of the "input" argument and run the operat
ion again.
At line:1 char:66
+ $password = cat C:\securestring.txt | ConvertTo-SecureString <<<<  -Forc
e
    + CategoryInfo          : InvalidArgument: (:) [ConvertTo-SecureString], P
   SArgumentException
    + FullyQualifiedErrorId : ImportSecureString_InvalidArgument,Microsoft.Pow
   erShell.Commands.ConvertToSecureStringCommand

---------------------------------------------------------------------------------------
Avatar of Stelian Stan
Stelian Stan
Flag of Canada image

ASKER CERTIFIED SOLUTION
Avatar of footech
footech
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ConvertTo-SecureString : Cannot process argument because the value of argument "input" is invalid. Change the value of the "input" argument and run the operation again.
Regarding your error..

Ideally your command should work without any error..
read-host -assecurestring | convertfrom-securestring | out-file C:\securestring.txt
$password = cat C:\securestring.txt | ConvertTo-SecureString -Force


The error possibly means your first command failed to create password and save it to the file..
Are you getting any output for command cat C:\securestring.txt?
Avatar of revenuecyclepartners
revenuecyclepartners

ASKER

Yes cat C:\securestring.txt outputs what looks like encrypted text.

I've also tried creating the password file with he following commands and have had similar errors.

$password = "PASSWORD"
$secure = ConvertTo-SecureString $password -force -asPlainText
$bytes = ConvertFrom-SecureString $secure
$bytes | Out-File secureString.txt
I hope you are using the same account to create and read the password..
I tried creating and using the encrypted password file from the same user as well as from different user accounts with no luck.

It doesn't make sense to me that you can only create and use a password file while logged in as that user, what's the point of having the cred file if you can't use it to auto logon for instance when joining the domain. Before I join the domain I'm logged on to the comptuer with a local user account and the domain is going to ask me for domain creds when I send the join domain request.