mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
33 lines
940 B
PowerShell
Executable File
33 lines
940 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
play-imperial-march.ps1
|
|
.DESCRIPTION
|
|
Plays the Imperial March (Star Wars).
|
|
.EXAMPLE
|
|
PS> .\play-imperial-march.ps1
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
[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
|