I have followed the following guide to create a SecureString password. Now, I need to log on to a foreign Domain Controller with the dsquery options -s (server) -u (user) and -p (password).
dsquery group -name $group -s $rmSrv -u $user -p $pass | dsget group -members -expand -c -s $rmSrv -u $user -p $pass | dsget user -samid -c -s $rmSrv -u $user -p $pass > $filename
When I enter the password in plaintext, I get authenticated. Once using the SecureString object, I can not authenticate. I have tried a few options, but could not get it running.
Do you have ideas?
The only way to do that is to decrypt the
SecureString
object and get it as a string.Here is a sample function:
Caution: Decrypting a
SecureString
object bypasses the protections thatSecureString
objects provide.If you insist on using the
dsquery
command, this is the only option, because it requires a plain-text password on its command line. This is inherently insecure.Instead, I would recommend to use the Active Directory cmdlets that can use
SecureString
directly without the need to convert to plain-text.