Locate-Ipaddress
Prints the geo location of the given IP address
param([string]$IPaddress= "")
try {
if ($IPaddress -eq "" ) { $IPaddress = read-host "Enter IP address to locate" }
$result = Invoke-RestMethod -Method Get -Uri "http://ip-api.com/json/$IPaddress"
write-output $result
exit 0 # success
} catch {
"?? ERROR: $($Error[0]) (script line $($_.InvocationInfo.ScriptLineNumber))"
exit 1
}