Determine if a DC is a Global Catalog (GC) server

There are several ways to find out if a Domain Controller has the Global Catalog role enabled. In this article, we’ll see how to determine this using the graphical user interface (GUI and PowerShell.

Using the graphical user interface (GUI)

After you connect to DC, open the Active Directory Sites and Services console. Expand the Sites container until you find the DC you want to check. Right-click NTDS Settings and then click Properties.

Determine if a DC is a Global Catalog (GC) server

Here, on the General tab, you can see if the Domain Controller has enabled the Global Catalog role or not.

Determine if a DC is a Global Catalog (GC) server

Using PowerShell

To check on the current DC you are connected to, use the following command.

Get-ADDomainController | ft Name,IsGlobalCatalog

To check all DCs on a Site, use the following command.

Get-ADDomainController-Filter {Site-eq 'Default-First-Site-Name'}} | FT Name,IsGlobalCatalog

To check all DCs in a Forest, use the following command.

Get-ADForest meraki.edu | FL GlobalCatalogs

Determine if a DC is a Global Catalog (GC) server

About Dimitris Tonias 144 Articles
My name is Dimitris Tonias, IT Pro, G(r)eek, focused on Server, Virtualization, and Cloud technologies.

3 Comments on Determine if a DC is a Global Catalog (GC) server

  1. Hi,
    in case you have a lot of DC’s in the domain this command gives better output 🙂
    Get-ADForest meraki.edu | select -ExpandProperty globalcatalogs

Leave a Reply

Your email address will not be published.


*