Category: PowerShell

  • PowerShell join computer to a domain

    To join a Windows computer to a domain using PowerShell use the following script. You can read my previous post, here on how to create the password file. #set domain, credential, and hostname variables $File = “C:\Scripts\Password.txt” $Key = (1..32) $UserName = “contoso.com\adjoin” $Password = Get-Content $File | ConvertTo-SecureString -Key $Key $DomainJoinCredentials = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList…

  • encrypt password with key using PowerShell

    Encrypt password with key using PowerShell Encrypt password with key using PowerShell. One major issue that I had to overcome, was to hide the password for the scripts that I will use them on schedule and there will be no need to include it as clear text. Using the below I was able to encrypt…