2023-07-29 09:55:25 +02:00
|
|
|
## Script: *list-countries.ps1*
|
2022-11-17 20:02:26 +01:00
|
|
|
|
|
|
|
list-countries.ps1
|
2021-10-17 14:33:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
```powershell
|
|
|
|
|
|
|
|
|
|
|
|
[<CommonParameters>]
|
|
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
|
|
```
|
|
|
|
|
2023-07-29 09:55:25 +02:00
|
|
|
## Script Content
|
2022-11-17 20:05:34 +01:00
|
|
|
```powershell
|
2022-11-17 20:02:26 +01:00
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
|
|
Lists details of all countries
|
|
|
|
.DESCRIPTION
|
|
|
|
This PowerShell script lists details of all countries.
|
|
|
|
.EXAMPLE
|
|
|
|
PS> ./list-countries
|
|
|
|
.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
|
|
|
|
}
|
2022-11-17 20:05:34 +01:00
|
|
|
```
|
2022-11-17 20:02:26 +01:00
|
|
|
|
2023-07-29 09:55:25 +02:00
|
|
|
*(generated by convert-ps2md.ps1 using the comment-based help of list-countries.ps1 as of 07/29/2023 09:55:11)*
|