Update description

This commit is contained in:
Markus Fleschutz 2021-09-24 08:57:08 +02:00
parent 71f8fdba2f
commit 643aeb782e
6 changed files with 10 additions and 10 deletions

View File

@ -2,9 +2,9 @@
.SYNOPSIS .SYNOPSIS
add-firewall-rules.ps1 [<path-to-executables>] add-firewall-rules.ps1 [<path-to-executables>]
.DESCRIPTION .DESCRIPTION
Adds firewall rules for the given executables (needs administrator rights). Adds firewall rules for the given executables (needs administrator rights)
.EXAMPLE .EXAMPLE
PS> .\add-firewall-rules.ps1 C:\MyApp\bin PS> ./add-firewall-rules C:\MyApp\bin
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -2,9 +2,9 @@
.SYNOPSIS .SYNOPSIS
add-memo.ps1 [<text>] add-memo.ps1 [<text>]
.DESCRIPTION .DESCRIPTION
Adds the given memo text to $HOME/Memos.csv. Adds the given memo text to $HOME/Memos.csv
.EXAMPLE .EXAMPLE
PS> .\add-memo.ps1 "Buy apples" PS> ./add-memo "Buy apples"
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -2,9 +2,9 @@
.SYNOPSIS .SYNOPSIS
alert.ps1 [<message>] alert.ps1 [<message>]
.DESCRIPTION .DESCRIPTION
Handle and escalate the given alert message. Handle and escalate the given alert message
.EXAMPLE .EXAMPLE
PS> .\alert.ps1 "Harddisk failure" PS> ./alert "Harddisk failure"
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION .DESCRIPTION
Change the working directory to the user's desktop folder Change the working directory to the user's desktop folder
.EXAMPLE .EXAMPLE
PS> .\cd-desktop.ps1 PS> ./cd-desktop
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION .DESCRIPTION
Turns the audio volume down (-10% by default). Turns the audio volume down (-10% by default).
.EXAMPLE .EXAMPLE
PS> .\turn-volume-down.ps1 PS> ./turn-volume-down
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz · License: CC0
.LINK .LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS .SYNOPSIS
turn-volume-up.ps1 [<percent>] turn-volume-up.ps1 [<percent>]
.DESCRIPTION .DESCRIPTION
Turns the audio volume up (+10% by default). Turns the audio volume up (+10% by default)
.EXAMPLE .EXAMPLE
PS> .\turn-volume-up.ps1 PS> ./turn-volume-up
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz · License: CC0
.LINK .LINK