mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-15 23:28:07 +02:00
Add 2 more cities
This commit is contained in:
15
Scripts/show-denver-city.ps1
Executable file
15
Scripts/show-denver-city.ps1
Executable file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Shows Denver in Google Maps
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with Google Maps at Denver city (USA).
|
||||
.EXAMPLE
|
||||
PS> ./show-denver-city
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "https://www.google.com/maps/place/Denver"
|
||||
exit 0 # success
|
@ -11,5 +11,5 @@
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "https://www.google.com/maps/place/Kansas"
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "https://www.google.com/maps/place/Kansas+City"
|
||||
exit 0 # success
|
||||
|
15
Scripts/show-montreal-city.ps1
Executable file
15
Scripts/show-montreal-city.ps1
Executable file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Shows Montreal in Google Maps
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with Google Maps at Montreal city (Canada).
|
||||
.EXAMPLE
|
||||
PS> ./show-montreal-city
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "https://www.google.com/maps/place/Montreal"
|
||||
exit 0 # success
|
Reference in New Issue
Block a user