Network
Reverse DNS

Reverse DNS

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 asailable).

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

0 0 votes
Article Rating
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments