Jump to content

Unjoin domain script


Geddie

Recommended Posts

  • 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

Link to comment
Share on other sites

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...