1st Official Post
  • 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 }

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!