我们知道,AD 活动目录默认是不能降级的,例如2003的级别提升到2008的级别,是一个不可逆的操作。但是在Windows Server 2008 R2和Windows Server 2012,我们可以将林级别和域级别从2012降级到2008R2, 又或者从2008 R2降级到2008. 当然,我们不能将它再降到更低的级别,例如 2003级别.
我们可以用Powershell 来添加AD 管理模块,完成以下的实验.
1. 导入AD 管理模块
Import-Module -Name ActiveDirectory
Server 2012体验之可降级的功能级别 2012→2008R2" title="Windows Server 2012体验之可降级的功能级别 2012→2008R2" />
2. 查下AD的林级别
Get-ADForest | Format-Table Name , ForestMode
Server 2012体验之可降级的功能级别 2012→2008R2" title="Windows Server 2012体验之可降级的功能级别 2012→2008R2" />
3. 我们尝试降低林级别和域级别到 Windows2008 级别.
Set-ADForestMode –Identity “appv.com” –ForestMode Windows2008Forest
Server 2012体验之可降级的功能级别 2012→2008R2" title="Windows Server 2012体验之可降级的功能级别 2012→2008R2" />
Set-ADDomainMode –Identity “appv.com” –DomainMode Windows2008Domain
Server 2012体验之可降级的功能级别 2012→2008R2" title="Windows Server 2012体验之可降级的功能级别 2012→2008R2" />
4. 我们再用命令看看林级别和域级别是否降级到 Windows2008 级别了.
Get-ADForest | Format-Table Name , ForestMode
Get-ADDomain | Format-Table Name ,DomainMode
Server 2012体验之可降级的功能级别 2012→2008R2" title="Windows Server 2012体验之可降级的功能级别 2012→2008R2" />
--------------------------------------------------------------------------------------------------
欢迎关注我的微博 http://weibo.com/pco18
您的顶帖是我发帖的动力↘ |