Skip to content

Instantly share code, notes, and snippets.

@martin9700
Last active January 1, 2016 01:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martin9700/8072594 to your computer and use it in GitHub Desktop.
Save martin9700/8072594 to your computer and use it in GitHub Desktop.
$Ping = Get-WMIObject Win32_PingStatus -Filter "Address = '$IP' AND ResolveAddressNames = TRUE"
If ($Ping.StatusCode -eq 0)
{ $ComputerName = $Ping.ProtocolAddressResolved
}
Else
{ $ComputerName = "Unable to resolve"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment