Windows Powershellによるドメインからワークグループへ変更する(ドメイン解除する)方法を紹介
ドメインから外れる
サンプルソース
前提として、PowerShellを管理者起動する必要がある。
(入力:認証が必要&自動再起動)
$User = "computer\user01"
$PWord = ConvertTo-SecureString -String "password01" -AsPlainText -Force
$Credential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $User, $PWord
Remove-Computer -Credential $Credential -WorkgroupName Local -Force -Restart
(出力)
なし