Windows
從不存在的域中刪除電腦的命令
我失去了我的域控制器機器,然後添加了新的域控制器,但使用了新域。如何使用命令行從舊域中刪除網路機器並添加到新域?使用 Windows Server 2008 Core 的機器(僅限命令行)
net computer \\name del
僅適用於域控制器。
sconfig
當我嘗試從舊域退出時,控制台會請求使用者名和密碼以退出。我輸入它,然後得到錯誤“無法連接到域”(舊的域控制器不存在)
該怎麼辦?
嘗試
netdom remove computername /Domain:domain /UserD:user /PasswordD:* /Force
鍵入
netdom remove /?
完整的命令用法。/Force選項是您正在尋找的。根據幫助:
Forces the unjoin of the machine from the domain even if the domain is not found or does not contain the matching computer object.
要將成員加入新域:
netdom join computername /Domain:domain /UserD:user /PasswordD:*
再次鍵入
netdom join /?
以獲取有關命令用法的幫助。
一種更現代的方法是使用 Powershell: