Files
Scripting/Powershell/Scripts/play-beep.ps1
DistractADD f2475a3bdd Added Files
2021-07-06 13:13:13 +10:00

10 lines
208 B
PowerShell

<#
.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