Add list-countries.ps1

This commit is contained in:
Markus Fleschutz
2021-08-27 19:30:32 +02:00
parent 6b55c445d3
commit 503a7485f1
3 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
<#
.SYNOPSIS
list-countries.ps1
.DESCRIPTION
Lists details of all countries
.EXAMPLE
PS> .\list-countries.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz
License: CC0
#>
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
}