The *list-countries.ps1* Script =========================== list-countries.ps1 Parameters ---------- ```powershell [] This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. ``` Script Content -------------- ```powershell <# .SYNOPSIS Lists details of all countries .DESCRIPTION This PowerShell script 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 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" exit 1 } ``` *(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:55)*