|
HowTo: Reset Local User Password with Powershell. I would like the powershell equivalent of:
-------------------------------------------
sComputer = "MyComputer"
Set oUser = GetObject("WinNT://" & sComputer & "/Administrator, user")
oUser.SetPassword "testpassword"
oUser.SetInfo |