function New-PSCredential( $ID, $PlainPassword ){ | |
$SecurePassword = ConvertTo-SecureString –String $PlainPassword –AsPlainText -Force | |
$Credential = New-Object System.Management.Automation.PSCredential($ID, $SecurePassword) | |
Return $Credential | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment