Add show-new-york-city.ps1

This commit is contained in:
Markus Fleschutz 2021-11-03 19:51:32 +01:00
parent bfeb86d82b
commit eda717a626
2 changed files with 16 additions and 1 deletions

View File

@ -11,5 +11,5 @@
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://google.de/maps"
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps"
exit 0 # success

15
Scripts/show-new-york-city.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Show NYC in Google Maps
.DESCRIPTION
This script launches the Web browser with Google Maps at New York City.
.EXAMPLE
PS> ./show-new-york-city
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps/place/New+York+City"
exit 0 # success