Add several scripts

This commit is contained in:
Markus Fleschutz 2021-11-12 13:11:14 +01:00
parent 1a74335692
commit cedd56b8df
4 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows Atlanta in Google Maps
.DESCRIPTION
This script launches the Web browser and shows Atlanta city (USA) in Google Maps.
.EXAMPLE
PS> ./show-atlanta-city
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps/place/Atlanta"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows Chicago in Google Maps
.DESCRIPTION
This script launches the Web browser and shows Chicago (USA) in Google Maps.
.EXAMPLE
PS> ./show-chicago-city
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps/place/Chicago"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows Dublin in Google Maps
.DESCRIPTION
This script launches the Web browser and shows Dublin city (Ireland) in Google Maps.
.EXAMPLE
PS> ./show-dublin-city
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps/place/Dublin"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows Las Vegas in Google Maps
.DESCRIPTION
This script launches the Web browser and shows Las Vegas city (USA) in Google Maps.
.EXAMPLE
PS> ./show-las-vegas-city
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps/place/London"
exit 0 # success