mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-14 20:14:00 +01:00
69 lines
1.7 KiB
Markdown
69 lines
1.7 KiB
Markdown
PS> *./play-imperial-march.ps1*
|
|
====================
|
|
|
|
This PowerShell script plays the Imperial March used in the Star Wars film series.
|
|
|
|
Parameters
|
|
----------
|
|
```powershell
|
|
PS> ./play-imperial-march.ps1 [<CommonParameters>]
|
|
|
|
[<CommonParameters>]
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
```
|
|
|
|
Example
|
|
-------
|
|
```powershell
|
|
PS> ./play-imperial-march
|
|
|
|
```
|
|
|
|
Notes
|
|
-----
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
Related Links
|
|
-------------
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
Script Content
|
|
--------------
|
|
```powershell
|
|
<#
|
|
.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 07/29/2023 10:15:11)*
|