Reverse DNS
 
Notifications
Clear all

Reverse DNS

1 Posts
1 Users
0 Reactions
3 Views
Frank Schroeder
(@iseetwizard)
Eminent Member Admin
Joined: 5 years ago
Posts: 13
Topic starter  

If you ever needed a Machine Name for an IP Address you can simply try this PowerShell command (always run as administrator).

 

$ComputerIPAddress = '10.10.10.10'
[System.Net.Dns]::GetHostEntry($ComputerIPAddress).HostName

 

There is an alternative to get more information while connection to the Active Directory (if available).

 

import-module activedirectory
$ComputerIPAddress = '10.10.10.10'
Get-ADComputer -property * -filter { ipv4address -eq $ComputerIPAddress }

 

 


   
Quote