mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-22 16:03:22 +01:00
Add 2 scripts
This commit is contained in:
parent
641a82d250
commit
736bfc276a
15
Scripts/open-outdoor-active.ps1
Executable file
15
Scripts/open-outdoor-active.ps1
Executable file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Opens the Outdoor Active website
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with the Outdoor Active website.
|
||||
.EXAMPLE
|
||||
PS> ./open-outdoor-active
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-browser.ps1" "https://www.outdooractive.com"
|
||||
exit 0 # success
|
15
Scripts/open-radio-costa-del-mar.ps1
Executable file
15
Scripts/open-radio-costa-del-mar.ps1
Executable file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Opens the radio station Costa Del Mar
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with the radio station Costa Del Mar
|
||||
.EXAMPLE
|
||||
PS> ./open-radio-costa-del-mar
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/costadelmar"
|
||||
exit 0 # success
|
Loading…
Reference in New Issue
Block a user