mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
27 lines
789 B
PowerShell
Executable File
27 lines
789 B
PowerShell
Executable File
<#
|
|
.SYNTAX play-the-imperial-march.ps1
|
|
.DESCRIPTION plays the Imperial March (Star Wars)
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
|
#>
|
|
|
|
[console]::beep(440, 500)
|
|
[console]::beep(440, 500)
|
|
[console]::beep(440, 500)
|
|
[console]::beep(349, 350)
|
|
[console]::beep(523, 150)
|
|
[console]::beep(440, 500)
|
|
[console]::beep(349, 350)
|
|
[console]::beep(523, 150)
|
|
[console]::beep(440, 1000)
|
|
[console]::beep(659, 500)
|
|
[console]::beep(659, 500)
|
|
[console]::beep(659, 500)
|
|
[console]::beep(698, 350)
|
|
[console]::beep(523, 150)
|
|
[console]::beep(415, 500)
|
|
[console]::beep(349, 350)
|
|
[console]::beep(523, 150)
|
|
[console]::beep(440, 1000)
|
|
exit 0
|