PowerShell/Scripts/locate-ipaddress.ps1
2021-08-29 17:50:03 +02:00

26 lines
601 B
PowerShell
Executable File

<#
.SYNOPSIS
locate-ipaddress.ps1 [<IPaddress>]
.DESCRIPTION
Prints the geographic location of the given IP address.
.EXAMPLE
PS> .\locate-ipaddress.ps1 177.144.67.98
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
param([string]$IPaddr = "")
try {
if ($IPaddr -eq "" ) { $IPaddr = read-host "Enter IP address to locate" }
$result = Invoke-RestMethod -Method Get -Uri "http://ip-api.com/json/$IPaddr"
write-output $result
exit 0
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}