Get-Publicip.ps1

function get-publicip {
[CmdletBinding()]
param(
$uri="ipinfo.io"
)
Invoke-WebRequest -Uri $uri | Convertfrom-Json | select IP
}