Geddie Posted September 25, 2019 Posted September 25, 2019 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.
Administrators Paul Posted September 30, 2019 Administrators Posted September 30, 2019 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
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now