如何將AD 2012林和域級別降級

 

 

我們知道,AD 活動目錄默認是不能降級的,例如2003的級別提升到2008的級別,是一個不可逆的操作。但是在Windows Server 2008 R2和Windows Server 2012,我們可以將林級別和域級別從2012降級到2008R2, 又或者從2008 R2降級到2008. 當然,我們不能將它再降到更低的級別,例如 2003級別.  

我們可以用Powershell 來添加AD 管理模塊,完成以下的實驗.

1. 導入AD 管理模塊

Import-Module -Name ActiveDirectory

image

2. 查下AD的林級別

Get-ADForest | Format-Table Name , ForestMode

image


3.  我們嘗試降低林級別和域級別到 Windows2008 級別.

Set-ADForestMode –Identity “appv.com” –ForestMode Windows2008Forest 

image 

Set-ADDomainMode –Identity “appv.com” –DomainMode Windows2008Domain

image


4. 我們再用命令看看林級別和域級別是否降級到 Windows2008 級別了. 

Get-ADForest | Format-Table Name , ForestMode

Get-ADDomain | Format-Table Name ,DomainMode
 

image

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章