mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 04:24:01 +01:00
16 lines
343 B
PowerShell
16 lines
343 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Plays Radio 7 Ulm
|
|||
|
.DESCRIPTION
|
|||
|
This script launches the Web browser and plays radio station 7 Ulm.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./play-radio-seven
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
& "$PSScriptRoot/open-browser.ps1" "http://streema.com/radios/play/Radio_7"
|
|||
|
exit 0 # success
|