PowerShell/Scripts/play-beep.ps1
2021-04-21 19:53:52 +02:00

10 lines
208 B
PowerShell
Executable File

<#
.SYNTAX play-beep.ps1
.DESCRIPTION plays a beep sound
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
[console]::beep(500,300)
exit 0