Security is paramount in our line of work, a breach would mean a catastrophe of epic proportions for a sys admin – I mean what can’t you do if you’re the administrator right? So we set our passwords T0b3imp055ibleT0Guess and lock them up in keypasses.
But we sys admins are lazy, when it comes to scripts – we leave it to ask for our password every time we execute the script, but what if we need to automate the script – schedule it to run automatically? we can’t leave them in plain sight, plain text! Not to worry – as always powershell has a module to save our skins. Here’s how you store your passwords securely and retrieve them when needed:
Storing passwords securely
Powershell thankfully has the ConvertFrom-SecureString module to convert any text to a secure string. Save the following script separately and it will prompt you to enter a new password and will save it in the location with the file name you have specified
$password_file_location = "D:\test\credentials.txt"
\\location and filename can be anything you want it to be
Read-Host "Enter New Password" -AsSecureString | ConvertFrom-SecureString | Out-File $password_file_location
Retrieving the saved password
Use the following lines in your script (that does the automation job) to retrieve the saved password
$password_file_location = "D:\test\credentials.txt"
$password = Get-Content $password_file_location | ConvertTo-SecureString
Now the $password variable contains the password you have saved previously. Use it in the part of the code you use to connect to the server and viola you’re through without having to type your password all the time or using a plain text password!
Note: This doesn’t guarantee security, but it’s definitely a step in the right direction!