mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-17 12:10:53 +01:00
16 lines
364 B
PowerShell
16 lines
364 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Plays radio station Dance FM
|
|||
|
.DESCRIPTION
|
|||
|
This script launches the Web browser and plays radio station Dance FM.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./play-radio-dance-fm
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
& "$PSScriptRoot/open-browser.ps1" "https://tunein.com/radio/Dance-FM-s303095/"
|
|||
|
exit 0 # success
|