Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to check settings?

Status
Not open for further replies.

cp4720

MIS
Sep 10, 2001
9
MY
Hi

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
 
Try just writing the "set" command. You will see the computer name and the logon server for sure.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top