mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-02-22 20:51:17 +01:00
Add several scripts
This commit is contained in:
parent
1a74335692
commit
cedd56b8df
15
Scripts/show-atlanta-city.ps1
Normal file
15
Scripts/show-atlanta-city.ps1
Normal 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
|
15
Scripts/show-chicago-city.ps1
Normal file
15
Scripts/show-chicago-city.ps1
Normal 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
|
15
Scripts/show-dublin-city.ps1
Normal file
15
Scripts/show-dublin-city.ps1
Normal 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
|
15
Scripts/show-las-vegas-city.ps1
Normal file
15
Scripts/show-las-vegas-city.ps1
Normal 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
|
Loading…
Reference in New Issue
Block a user