Windows – How to determine if a Windows Domain is still active

active-directorywindows

We inheritied a file server that has permissions from a domain I do not recognize (e.g., SCICENTER/jdoe).

I suspect this might be a domain that has since been retired. How could I confirm that the domain is not active?

Best Answer

It may be a NetBIOS name of a domain trust. Check current trusts with the following command:

nltest /server:localhost /trusted_domains

The output will report all trusted domains on a separate line. The output is formatted as follows, with the 0 being the line number:

 0: NETBIOSNAME FQDN.COM (Domain Type) (Other Attributes)

The server's primary/native domain will be noted in the Other Attributes field as well.

Once you have the FQDN of the SCICENTER domain, then you can just try to resolve it through DNS and/or ping it.

Alternatively, you can also list all domain controllers that the computer knows of for a given domain name (NetBIOS or FQDN) using the following command:

 nltest /dclist:SCICENTER
 nltest /dclist:sciencecenter.org
  et cetera

Note: If you use the NetBIOS name, then you may only get the PDC for a trusted domain.