mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-02-01 18:39:38 +01:00
16 lines
374 B
PowerShell
16 lines
374 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Plays country music
|
|||
|
.DESCRIPTION
|
|||
|
This script launches the Web browser and plays country music.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./play-country-music
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/HPR1_The_Classic_Country_Channel"
|
|||
|
exit 0 # success
|