mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 13:04:59 +02:00
Update the manuals
This commit is contained in:
16
Scripts/play-beep-sound.ps1
Executable file
16
Scripts/play-beep-sound.ps1
Executable file
@ -0,0 +1,16 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Plays a short beep sound
|
||||
.DESCRIPTION
|
||||
This script plays a short beep sound.
|
||||
.EXAMPLE
|
||||
PS> ./play-beep-sound
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
[System.Console]::Beep(500,300)
|
||||
start-sleep -m 300
|
||||
exit 0 # success
|
Reference in New Issue
Block a user