Top "System.security" questions

PowerShell - Decode System.Security.SecureString to readable password

I want to decode the password from a System.Security.SecureString to a readable password. $password = convertto-securestring "TestPassword" -asplaintext -force $…

powershell powershell-2.0 system.security
PowerShell - Get-Credential decode password?

I want to use the Get-Credential cmdlet in my code. How is is possible to decode the password easily back …

powershell credentials system.security