由于Windows Server 2012不再支持Dcpromo,对于活动目录域服务的卸载,我们可以在图形状态下进行,或者通过PowerShell脚本进行。
一、图形状态。
1、选择“管理”菜单下的“删除角色和功能”
依次进行如下操作
选择删除ADDS。然后选择“将此域控制器降级”
当AD中有多台DC时,如果无法和其它DC联系,可以选择“强制删除此域控制器”,这个选项相当以前的Dcpromo /forceremoval命令。
等待完成。
二、用脚本卸载活动目录域服务。
运行以下脚本文件
#
# 用于 AD DS 部署的 WindowsPowerShell 脚本
#
Import-ModuleADDSDeployment
Uninstall-ADDSDomainController `
-DemoteOperationMasterRole:$true `
-IgnoreLastDnsServerForZone:$true `
-LastDomainControllerInDomain:$true `
-RemoveDnsDelegation:$true `
-RemoveApplicationPartitions:$true `
-Force:$true
本文出自 “万花筒k” 博客,请务必保留此出处http://dengw.blog.51cto.com/7143894/1926875
AD域服务器卸载---WindowsServer2012R2
原文地址:http://dengw.blog.51cto.com/7143894/1926875