forked from fleschutz/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist-countries.ps1
33 lines (31 loc) · 885 Bytes
/
list-countries.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<#
.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
}