Update the manuals

This commit is contained in:
Markus Fleschutz
2021-11-08 21:27:30 +01:00
parent fb0f2a9670
commit c4d33be8cb
426 changed files with 850 additions and 9797 deletions

16
Scripts/play-beep-sound.ps1 Executable file
View File

@ -0,0 +1,16 @@
<#
.SYNOPSIS
Plays a short beep sound
.DESCRIPTION
This script plays a short beep sound.
.EXAMPLE
PS> ./play-beep-sound
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
[System.Console]::Beep(500,300)
start-sleep -m 300
exit 0 # success