mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
53 lines
1.3 KiB
Markdown
53 lines
1.3 KiB
Markdown
## The *list-countries.ps1* Script
|
|
|
|
list-countries.ps1
|
|
|
|
|
|
## Parameters
|
|
```powershell
|
|
|
|
|
|
[<CommonParameters>]
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
```
|
|
|
|
## Source Code
|
|
```powershell
|
|
<#
|
|
.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
|
|
}
|
|
```
|
|
|
|
*Generated by convert-ps2md.ps1 using the comment-based help of list-countries.ps1*
|