February 5th, 2013

PowerTip: Use PowerShell to Check Your AD DS Domain Mode

Doctor Scripto
Scripter

Summary: Use a Windows PowerShell cmdlet from the ActiveDirectory module to check for the domain mode of your AD DS domain.

Hey, Scripting Guy! Question How can I easily find out the domain mode of my Active Directory Domain Services (AD DS) domain by using a Windows PowerShell cmdlet?

Hey, Scripting Guy! Answer Use the Get-ADDomain cmdlet and select the domainMode property. It is also a good idea to select the DistinguishedName at the same time. This technique is shown here.

11:51 C:\> Get-ADDomain | select domainMode, DistinguishedName

                                domainMode DistinguishedName

                                ———- —————–

                         Windows2008Domain DC=Nwtraders,DC=Msft

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.