October 26, 2025 at 10:29 AM Official Post #1 If you ever needed a Machine Name for an IP Address you can simply try this PowerShell command (always run as administrator). Code $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). Code import-module activedirectory $ComputerIPAddress = '10.10.10.10' Get-ADComputer -property * -filter { ipv4address -eq $ComputerIPAddress }