mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-22 01:48:20 +02:00
Add several scripts
This commit is contained in:
parent
3bba9c82b0
commit
a9e41af86e
15
Scripts/open-radio-absolute-chillout.ps1
Executable file
15
Scripts/open-radio-absolute-chillout.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens radio station Absolute Chillout
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the radio station Absolute Chillout.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-radio-absolute-chillout
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/absolutechillout"
|
||||||
|
exit 0 # success
|
15
Scripts/open-radio-arabella.ps1
Executable file
15
Scripts/open-radio-arabella.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens radio station Arabella
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the radio station Arabella.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-radio-arabella
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/radioarabella"
|
||||||
|
exit 0 # success
|
15
Scripts/open-radio-bob.ps1
Executable file
15
Scripts/open-radio-bob.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens radio station BOB!
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the radio station BOB!.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-radio-bob
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/radiobob"
|
||||||
|
exit 0 # success
|
15
Scripts/open-radio-club-mix.ps1
Executable file
15
Scripts/open-radio-club-mix.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens radio station CLUBMIX
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the radio station CLUBMIX.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-radio-club-mix
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/m1fmclubmix"
|
||||||
|
exit 0 # success
|
15
Scripts/open-radio-f-f-n.ps1
Executable file
15
Scripts/open-radio-f-f-n.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens radio station ffn
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the radio station ffn.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-radio-f-f-n
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/ffn"
|
||||||
|
exit 0 # success
|
15
Scripts/open-radio-gong.ps1
Executable file
15
Scripts/open-radio-gong.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens radio station Gong
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the radio station Gong.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-radio-gong
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/radiogong"
|
||||||
|
exit 0 # success
|
15
Scripts/open-radio-ibiza.ps1
Executable file
15
Scripts/open-radio-ibiza.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens radio station Ibiza
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the radio station Ibiza.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-radio-ibiza
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/ibiza973"
|
||||||
|
exit 0 # success
|
15
Scripts/open-radio-jam-f-m.ps1
Executable file
15
Scripts/open-radio-jam-f-m.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens radio station JAM FM
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the radio station JAM FM.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-radio-jam-f-m
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/jamfm"
|
||||||
|
exit 0 # success
|
15
Scripts/open-radio-kiss-f-m.ps1
Executable file
15
Scripts/open-radio-kiss-f-m.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens radio station KISS FM
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the radio station KISS FM.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-radio-kiss-f-m
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/kissfm"
|
||||||
|
exit 0 # success
|
15
Scripts/open-radio-kiss-kiss.ps1
Executable file
15
Scripts/open-radio-kiss-kiss.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens radio station Kiss Kiss
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the radio station Kiss Kiss.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-radio-kiss-kiss
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/radiokisskiss"
|
||||||
|
exit 0 # success
|
15
Scripts/open-radio-malibu.ps1
Executable file
15
Scripts/open-radio-malibu.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens radio station Malibu
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the radio station Malibu.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-radio-malibu
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/malibufm"
|
||||||
|
exit 0 # success
|
15
Scripts/open-radio-n-joy.ps1
Executable file
15
Scripts/open-radio-n-joy.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens radio station N-JOY
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the radio station N-JOY.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-radio-malibu
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/n-joy"
|
||||||
|
exit 0 # success
|
15
Scripts/open-radio-paloma.ps1
Executable file
15
Scripts/open-radio-paloma.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens radio station Paloma
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the radio station Paloma.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-radio-paloma
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/radiopaloma"
|
||||||
|
exit 0 # success
|
15
Scripts/open-radio-seven.ps1
Executable file
15
Scripts/open-radio-seven.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens radio station 7
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the radio station 7.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-radio-seven
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/radio7"
|
||||||
|
exit 0 # success
|
15
Scripts/open-radio-soft-pop.ps1
Executable file
15
Scripts/open-radio-soft-pop.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens radio station SOFT POP
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the radio station SOFT POP.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-radio-soft-pop
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/m1fmsofttop"
|
||||||
|
exit 0 # success
|
15
Scripts/open-radio-top-f-m.ps1
Executable file
15
Scripts/open-radio-top-f-m.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens radio station TOP FM
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the radio station TOP FM.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-radio-top-f-m
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/topfm"
|
||||||
|
exit 0 # success
|
15
Scripts/open-radio-you-f-m.ps1
Executable file
15
Scripts/open-radio-you-f-m.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens radio station YOU FM
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the radio station YOU FM.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-radio-you-f-m
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/youfm"
|
||||||
|
exit 0 # success
|
Loading…
Reference in New Issue
Block a user