I have to pass password in the powershell script.
currently i am using CreditSSP and password storing in secure sting in the disk .
Is there any way to read password from schedule task configuration or SSO or windows authentication
Technology Tips and News
I have to pass password in the powershell script.
currently i am using CreditSSP and password storing in secure sting in the disk .
Is there any way to read password from schedule task configuration or SSO or windows authentication
Hi,
Password can be easily obtained from PSCredential object using
$PlainPassword = $Credentials.GetNetworkCredential().Password |
For more details, please go through the below two articles:
Working with Passwords, Secure Strings and Credentials in Windows PowerShell
Decrypt PowerShell Secure String Password
Regards,
Yan Li
If you are TechNet Subscription user and have any feedback on our support quality, please send your feedback here.