Decrypt a password in an unattend.xml file
With powershell
1 2 | $encryptedpwd = get-content C:\temp\pwd.txt [System.Text.Encoding] ::Unicode.GetString( [System.Convert] ::FromBase64String( $encryptedpwd )) |
Decrypt a password in an unattend.xml file
With powershell
1 2 | $encryptedpwd = get-content C:\temp\pwd.txt [System.Text.Encoding] ::Unicode.GetString( [System.Convert] ::FromBase64String( $encryptedpwd )) |
0 Comments