I need help on how can I check the settings for a NT server like what ill is the domain name, server name, etc....this will all be downloading in a txt file.
Hope I will get the answer asap.
Thanks in advance.
Make a list of all the information that you want to find out, You will need to write a small batch file to export everything to .txt file. FOllowing are some commands that will give you informations like server name, Domain name,IP address, DNs, DHCP etc...
net config workstation
net config server
ipconfig /all
Use find command in conjunction with the above to find specific information
e.g
net config workstation | find /i "domain"
Workstation domain UKTC
Workstation Domain DNS Name (null)
Logon domain EU
To get it into text file, do
net config workstation | find /i "domain" > c:\temp\temp.txt
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.