PowerShell/Scripts/show-new-york-city.ps1
2021-11-29 16:50:17 +01:00

16 lines
380 B
PowerShell
Executable File

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