Asked By
arianrelos
0 points
N/A
Posted on - 01/28/2012
I am using 32 bit Windows Server 2003 in the server.
It was showing in the domain list without any problem.
But, suddenly it is not showing in the domain list.
So, I have to access it through the ‘run box’.
How can I activate or restore the same to the domain list.
If anybody knows the solution to this problem, please help me.
I will be thankful for all your help.
Windows Server 2003 is not showing in the domain list.
Some useful run command for your problem finding
With the native NET command: (List all domains and workgroups in the network)
   NET VIEW /DOMAIN
 With the native NET command: (List all computers in the network)
   NET VIEW
   or, to list the names only:
   FOR /F "skip=3 delims=   " %%A IN ('NET VIEW') DO ECHO.%%A
delims is a backslash, followed by a tab and a space.
 With (native) Windows Server 2003 commands (Active Directory only): (List all domain controllers)
   DSQUERY Server
or, if you prefer host names only (tip by Jim Christian Flatin):
   DSQUERY Server -o rdn
 Find the FSMO with (native) Windows Server 2003 commands (Active Directory only): (Find the primary domain controller)
   NETDOM QUERY /D:mydomain.com FSMO
NETDOM is part of the support tools found in the SUPPORT directory of the Windows 2000 installation CDROM.
Then read this excellent article.
Windows Server 2003 is not showing in the domain list.
Thanks Ilan aaroan. I got the way to solve my problem with your suggestion. The article helped me a lot. Thank you very much