mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-02-22 20:51:17 +01:00
Added play-beep.ps1
This commit is contained in:
parent
e2ab7d64cb
commit
ded117566a
@ -28,6 +28,7 @@ The following PowerShell scripts can be found in the [Scripts/](Scripts/) subfol
|
||||
* [moon.ps1](Scripts/moon.ps1) - prints the current moon phase
|
||||
* [open-browser.ps1](Scripts/open-browser.ps1) - starts the default Web browser
|
||||
* [open-email-client.ps1](Scripts/open-browser.ps1) - starts the default email client
|
||||
* [play-beep.ps1](Scripts/play-beep.ps1) - plays a beep sound
|
||||
* [poweroff.ps1](Scripts/poweroff.ps1) - halts the local computer (needs administrator rights)
|
||||
* [new-email.ps1](Scripts/new-email.ps1) - starts the default email client to write a new email
|
||||
* [news.ps1](Scripts/news.ps1) - prints the latest news
|
||||
|
15
Scripts/play-beep.ps1
Executable file
15
Scripts/play-beep.ps1
Executable 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
|
||||
}
|
Loading…
Reference in New Issue
Block a user