$server = “YOURSERVERNAME”$password = “yourpassword”$username = “yourusername”Write-Host “Start reset” $SecurePassword = $password | ConvertTo-SecureString -AsPlainText -Force$cred = New-Object System.Management.Automation.PSCredential -ArgumentList $username, $SecurePassword$Session = New-PSSession -ComputerName…
Finnish web guy blogging from Denmark.