> ConvertTo-SecureString -String "NotARealPasswd" -AsPlainText -Force | ConvertFrom-SecureString | Out-File C:\passwd.txt
> $pass = get-content C:\passwd.txt | convertto-securestring
> $credentials = new-object -typename System.Management.Automation.PSCredential -argumentlist "myusername",$pass