Pages - Menu

Monday 26 August 2013

Finding computer name using IP !

Hi,
I need to find the computer name of one PC connected in LAN (joined to domain).
I have the IP address of terminal. how i will find the computer name?

Finding the IP address assigned to a computer is very simple. All you have to do is open the command prompt and use the IPCONFIG command. If you want to find the IP address associated with a specific computer name, you can use the NBTSTAT command. The syntax for doing so is as follows:
Find Computer IP Address using Computer Name:
NBTSTAT -A COMPUTERNAME
 
What if you want to find the computer name associated with a specific IP address? The solution is simple. You can once again find the information you are looking for using the NBTSTAT command, only this time with a different switch. Instead of using -a, you will use -A and specify an IP address as shown below:

Find Computer Name Just use below command :
NBTSTAT -A IPADDRSS
 
The results will tell you the computer name that is currently associated with the IP address you have specified.

Broadcast net view command and then do the
NBTSTAT -A -N

Use
NSLOOKUP
Or
PING -A IPADDRESS
NSLOOKUP uses DNS and PING will try WINS and DNS

Find Website IP-ADDRESS
PING WEBSITENAME
PING FACEBOOK.COM

Shutdown Remote Computer:
SHUTDOWN -I


Note:
use "/?" parameter to get the help on "dos" commands, like:
nbtstat /?
ipconfig /?
route /?
tracert /?
netsh /?
arp /?

 

No comments:

Post a Comment