Get Host Name from IP

[System.Net.Dns]::GetHostbyAddress($IPAddress) 
Details
Get the host name from an IP address

Example
PS C:\> $IPAddress = "8.8.8.8"
>> [System.Net.Dns]::GetHostbyAddress($IPAddress)


HostName                       Aliases AddressList
--------                       ------- -----------
google-public-dns-a.google.com {}      {8.8.8.8}