PowerShell/Scripts/play-beep.ps1
Markus Fleschutz b653133853 Add UTF-8 BOM
2021-09-27 10:38:12 +02:00

16 lines
238 B
PowerShell
Executable File

<#
.SYNOPSIS
play-beep.ps1
.DESCRIPTION
Plays a short beep sound
.EXAMPLE
PS> ./play-beep
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
[console]::beep(500,300)
exit 0 # success