How to rollback AD DS Forest Function Levels in Windows Server using PowerShell
How to rollback AD DS Forest Function Levels in Windows Server using PowerShell
So you have recently raised your Active Directory Domain services Forest Functional Level from Server 2008 to either Sever 2008 R2 or Server 2012. Now you have realized you need to go back to either Server 2008 or Server 2008 R2, in previous operating systems this was not possible. In Windows Server 2008 R2 and Windows Server 2012, we now have the tools to be able to revert back to a previous level. There are some limitations, the lowest level that can be rolled back to is Windows Server 2008. The other limitation is that you have not enable any of the features that are required by the current level. To accomplish this task you must use PowerShell as there is no GUI to rollback the functional level.
The first step is to import the Active Directory Manifest into PowerShell, if needed. Launch PowerShell and type Import-Module Activedirectory.
Use the Get-ADForest to determine your current mode.
The next CMDlet we are going to use is Set-ADForestMode. To get the syntax for using this CMDlet use the built in help system by typing Get-Help Set-ADForestMode . To get more information about the CMDlet add -detailed, -full or -examples.
Based on the syntax of the help file we will now rollback the current forest functional level from Windows Server 2012 to Windows Server 2008 R2, type the following CMDlet.
Set-ADForestMode -Identity (Get-ADForest).name -ForestMode Windows2008R2 press “Y” when the confirmation is asked.
Identity – I used the Get-ADforest CMDlet to retrieve the forest information I was connected to and the method to use the name parameter. You could of as easily typed in the FQDN of the forest.
ForestMode – The options here are only Windows2008 or Windows2008R2 depending how far you desire to rollback.
To verify the forest functional has changed either use the GUI or PowerShell . Type Get-ADForest to verity.
The Forest has successfully rolled back. Until next time, RIDE SAFE!!
Rick Trader
Windows Server Instructor – Interface Technical Training
Phoenix, AZ
You May Also Like
Creating Users and Managing Passwords in Microsoft Office 365
0 721 3In this Office 365 training video, instructor Spike Xavier demonstrates how to create users and manage passwords in Office 365. For instructor-led Office 365 training classes, see our course schedulle: Spike Xavier SharePoint Instructor – Interface Technical Training Phoenix, AZ 20347: Enabling and Managing Office 365
Windows 10 Features and Navigation – December 1, 2015
0 123 1In this recorded Windows 10 webinar from December 1,2015, Windows Instructor Steve Fullmer presents the navigation and some of the new features associated with Windows 10 including Sysinternals Tools for Windows Client, Windows core concepts, exploring Process Explorer as well as some of the features that are not yet ready for prime time but will … Continue reading Windows 10 Features and Navigation – December 1, 2015
How to clone a Windows Server 2012 or 2012 R2 Domain Controller
3 1636 3One of the coolest new features in Window Server 2012 and Windows Server 2012 R2 is the ability to clone a Domain Controller. In the past, if we had virtualized Domain Controllers and we actually took a snapshot of it and then rolled back to that snapshot, it would break the logon service on that … Continue reading How to clone a Windows Server 2012 or 2012 R2 Domain Controller
See what people are saying...