PowerShell/Scripts/show-montreal-city.ps1

16 lines
388 B
PowerShell
Raw Normal View History

2021-11-29 16:56:21 +01:00
<#
.SYNOPSIS
2021-11-29 17:04:40 +01:00
Shows Montreal city in Google Maps
2021-11-29 16:56:21 +01:00
.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