To reset the secure channel betweeen a computer and the domain, the following PowerShell command can be used;
Reset-ComputerMachinePassword
It can also be performed on a remote computer using the following;
Invoke-Command -ComputerName "Server01" -ScriptBlock {Reset-ComputerMachinePassword}
Full details can be found here
No comments:
Post a Comment