我们知道,AD 活动目录默认是不能降级的,例如2003的级别提升到2008的级别,是一个不可逆的操作。但是在Windows Server 2008 R2和Windows Server 2012,我们可以将林级别和域级别从2012降级到2008R2, 又或者从2008 R2降级到2008. 当然,我们不能将它再降到更低的级别,例如 2003级别.
我们可以用Powershell 来添加AD 管理模块,完成以下的实验.
1. 导入AD 管理模块
Import-Module -Name ActiveDirectory
<a href="http://virtualtom.blog.51cto.com/attachment/201301/13/1203850_1358082703EdrL.png"></a>
2. 查下AD的林级别
Get-ADForest | Format-Table Name , ForestMode
<a href="http://virtualtom.blog.51cto.com/attachment/201301/13/1203850_1358082704jB4G.png"></a>
3. 我们尝试降低林级别和域级别到 Windows2008 级别.
Set-ADForestMode –Identity “appv.com” –ForestMode Windows2008Forest
Set-ADDomainMode –Identity “appv.com” –DomainMode Windows2008Domain
<a href="http://virtualtom.blog.51cto.com/attachment/201301/13/1203850_1358082708zEWb.png"></a>
4. 我们再用命令看看林级别和域级别是否降级到 Windows2008 级别了.
Get-ADForest | Format-Table Name , ForestMode
Get-ADDomain | Format-Table Name ,DomainMode
<a href="http://virtualtom.blog.51cto.com/attachment/201301/13/1203850_1358082710bGVX.png"></a>
本文转自 VirtualTom 51CTO博客,原文链接:http://blog.51cto.com/virtualtom/1117667,如需转载请自行联系原作者