Jump to content
Pulseway 9.14 🔥

Featured Replies

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

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