Skip to content

Latest commit

 

History

History
82 lines (72 loc) · 2.11 KB

play-happy-birthday.md

File metadata and controls

82 lines (72 loc) · 2.11 KB

Script: play-happy-birthday.ps1

This PowerShell script plays the famous Happy Birthday song.

Parameters

PS> ./play-happy-birthday.ps1 [<CommonParameters>]

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

Example

PS> ./play-happy-birthday.ps1
(listen and enjoy)

Notes

Author: Markus Fleschutz | License: CC0

Related Links

https://github.com/fleschutz/PowerShell

Script Content

<#
.SYNOPSIS
	Plays the Happy Birthday song
.DESCRIPTION
	This PowerShell script plays the famous Happy Birthday song.
.EXAMPLE
	PS> ./play-happy-birthday.ps1
	(listen and enjoy)
.LINK
	https://github.com/fleschutz/PowerShell
.NOTES
	Author: Markus Fleschutz | License: CC0
#>

try {
	[System.Console]::Beep(1059.274, 300)
	[System.Console]::Beep(1059.274, 200)
	[System.Console]::Beep(1188.995, 500)
	[System.Console]::Beep(1059.274, 500)
	[System.Console]::Beep(1413.961, 500)
	[System.Console]::Beep(1334.601, 950)
	[System.Console]::Beep(1059.274, 300)
	[System.Console]::Beep(1059.274, 200)
	[System.Console]::Beep(1188.995, 500)
	[System.Console]::Beep(1059.274, 500)
	[System.Console]::Beep(1587.117, 500)
	[System.Console]::Beep(1413.961, 950)
	[System.Console]::Beep(1059.274, 300)
	[System.Console]::Beep(1059.274, 200)
	[System.Console]::Beep(2118.547, 500)
	[System.Console]::Beep(1781.479, 500)
	[System.Console]::Beep(1413.961, 500)
	[System.Console]::Beep(1334.601, 500)
	[System.Console]::Beep(1188.995, 500)
	[System.Console]::Beep(1887.411, 300)
	[System.Console]::Beep(1887.411, 200)
	[System.Console]::Beep(1781.479, 500)
	[System.Console]::Beep(1413.961, 500)
	[System.Console]::Beep(1587.117, 500)
	[System.Console]::Beep(1413.961, 900)
	exit 0 # success
} catch {
	"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
	exit 1
}

(generated by convert-ps2md.ps1 using the comment-based help of play-happy-birthday.ps1 as of 08/15/2024 09:50:52)