Skip to main content

How to find the system Host Name from an IP Address

Hi Guys,

If you have multi pal IP address of computers and you want to know the Host Name of the computer so you can use the below command:
Open the Command Prompt and run the command NBTSTAT -a IP address 
Exp.: C:\>nbtstat -a 10.100.27.150



Comments

Popular posts from this blog

Enable or Disable “Set Time (Zone) Automatically” in Windows 10 Using Registry Editor

Enable or Disable “Set Time (Zone) Automatically” in Windows 10 Using Registry Editor Press the Windows logo key + R to open the Run box. Type  regedit  and hit Enter. When the Registry Editor opens, navigate to the following key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters In the right pane you can see a string value named  Type . If you want Windows 10 to set time automatically, set its value data to  NTP . To disable automatic time synchronization, change its value to  NoSync . In order to enable or disable “Set Time Zone Automatically” in Windows 10, navigate to the following key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\tzautoupdate Double-click the 32-bit DWORD “ Start ” in the right pane. Set its value data to 3 if you want to make Windows 10 set time zone automatically. If you want to disable “Set Time Zone Automatically” in Windows 10, just set the value to 4. Reboot your computer for the registry changes to take ...

Find your Window licence key from inside Windows

Entering the following lines into an  admin Command Prompt  or PowerShell worked to display the OEM key embedded in our system's UEFI/BIOS. However, these commands didn't return any keys on other two machines we used for testing despite Windows 10 being activated. wmic path softwarelicensingservice get OA3xOriginalProductKey or powershell "(Get-WmiObject -query ‘select * from SoftwareLicensingService’).OA3xOriginalProductKey" There's also a commonly cited Visual Basic script that retrieves registry-based Windows keys (not those stored in the UEFI/BIOS). You can download the  script here . Copy this text and paste it into Notepad, saving it as a .vbs file. Then double-click to launch the file.