Added play-beep.ps1

This commit is contained in:
Markus Fleschutz
2020-12-21 14:25:28 +00:00
parent e2ab7d64cb
commit ded117566a
2 changed files with 16 additions and 0 deletions

15
Scripts/play-beep.ps1 Executable file
View File

@ -0,0 +1,15 @@
#!/snap/bin/powershell
# Syntax: ./play-beep.ps1
# Description: plays a beep sound
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
try {
[console]::beep(500,300)
exit 0
} catch {
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}