PowerShell/Docs/play-imperial-march.md
2023-09-20 17:05:11 +02:00

1.7 KiB

play-imperial-march.ps1

This PowerShell script plays the Imperial March used in the Star Wars film series.

Parameters

PS> ./play-imperial-march.ps1 [<CommonParameters>]

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

Example

PS> ./play-imperial-march

Notes

Author: Markus Fleschutz | License: CC0

https://github.com/fleschutz/PowerShell

Script Content

<#
.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
.LINK
	https://github.com/fleschutz/PowerShell
.NOTES
	Author: Markus Fleschutz | License: CC0
#>

[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

(generated by convert-ps2md.ps1 using the comment-based help of play-imperial-march.ps1 as of 09/20/2023 17:04:43)