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

34 lines
858 B
PowerShell

<#
.SYNOPSIS
list-countries.ps1
.DESCRIPTION
Lists details of all countries.
.EXAMPLE
PS> .\list-countries.ps1
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
function ListCountries {
$Countries = (Invoke-WebRequest -uri "https://restcountries.eu/rest/v2/all" -userAgent "curl" -useBasicParsing).Content | ConvertFrom-Json
foreach($Country in $Countries) {
New-Object PSObject -Property @{
'Country' = "$($Country.Name)"
'Capital' = "$($Country.Capital)"
'Population' = "$($Country.Population)"
'TLD' = "$($Country.TopLevelDomain)"
'Phone' = "+$($Country.CallingCodes)"
}
}
}
try {
ListCountries | format-table -property Country,Capital,Population,TLD,Phone
exit 0
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}