mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 00:54:04 +01:00
39 lines
1.1 KiB
PowerShell
Executable File
39 lines
1.1 KiB
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Plays the Imperial March (Star Wars)
|
|
.DESCRIPTION
|
|
This PowerShell script plays the Imperial March used in the Star Wars film series.
|
|
.EXAMPLE
|
|
PS> ./play-imperial-march.ps1
|
|
(listen and enjoy)
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
try {
|
|
[System.Console]::beep(440, 500)
|
|
[System.Console]::beep(440, 500)
|
|
[System.Console]::beep(440, 500)
|
|
[System.Console]::beep(349, 350)
|
|
[System.Console]::beep(523, 150)
|
|
[System.Console]::beep(440, 500)
|
|
[System.Console]::beep(349, 350)
|
|
[System.Console]::beep(523, 150)
|
|
[System.Console]::beep(440, 1000)
|
|
[System.Console]::beep(659, 500)
|
|
[System.Console]::beep(659, 500)
|
|
[System.Console]::beep(659, 500)
|
|
[System.Console]::beep(698, 350)
|
|
[System.Console]::beep(523, 150)
|
|
[System.Console]::beep(415, 500)
|
|
[System.Console]::beep(349, 350)
|
|
[System.Console]::beep(523, 150)
|
|
[System.Console]::beep(440, 1000)
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|