Posted September 25, 20195 yr Looking for a script that I can run to drop from XXX domain, set to "WORKGROUP" and reboot.  I used to have this in a command line form that I can't find.
September 30, 20195 yr Administrators Hi Geddie, Try this: $securePass = ConvertTo-SecureString "MySecretPassword" -AsPlainText -Force $cred = New-Object System.Management.Automation.PSCredential ("ExampleDomain\ExampleName", $securePass) Remove-Computer -Credential $cred -Force -Passthrough -Verbose -Restart -Paul
Create an account or sign in to comment