Jump to content

Recommended Posts

Posted

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
Posted

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...