PowerShell/Scripts/locate-ipaddress.ps1

21 lines
544 B
PowerShell
Raw Normal View History

2020-12-09 15:34:55 +01:00
#!/snap/bin/powershell
# Syntax: ./locate-ipaddress.ps1 [<IPaddress>]
2020-12-16 12:03:47 +01:00
# Description: prints the geographic location of the given IP address
2020-12-09 15:34:55 +01:00
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
param([string]$IPaddr)
try {
2020-12-25 11:30:43 +01:00
if ($IPaddr -eq "" ) {
$IPaddr = read-host "Enter IP address to locate"
}
2020-12-09 15:34:55 +01:00
$result = Invoke-RestMethod -Method Get -Uri "http://ip-api.com/json/$IPaddr"
2020-12-25 11:30:43 +01:00
write-output $result
2020-12-09 15:34:55 +01:00
exit 0
} catch {
2020-12-25 11:30:43 +01:00
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-09 15:34:55 +01:00
exit 1
}