Add some show-*-manual.ps1 scripts

This commit is contained in:
Markus Fleschutz 2021-12-04 14:53:24 +01:00
parent 09cc35b15e
commit 9b86a13895
6 changed files with 76 additions and 1 deletions

View File

@ -83,7 +83,7 @@ Lets the computer check something, replace [name] by: `CPU`, `date`, `DNS`, `dri
`Computer, show` [name] `manual`
--------------------------------
* launches the default Web browser with the given manual - replace [name] by: `Azure`, `Bash`, `Blender`, `Chrome`, `Edge`, `Firefox`, `Git`, `OBS Studio`, `PowerShell`, `Serenade`, `Vim`, `Voice` *(yes, this page!)*, or `Windows`.
* launches the default Web browser with the given online manual - replace [name] by: `Apple`, `Audacity`, `Azure`, `Bash`, `Blender`, `Chrome`, `Edge`, `Firefox`, `Git`, `OBS Studio`, `PowerShell`, `Serenade`, `SystemRescue`, `Toyota`, `Vim`, `Voice` *(yes, this page!)*, `Volkswagen`, or `Windows`.
* when finished say: "Close tab" or: "Computer, close [name] browser" to close the Web browser.

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows the Apple manuals
.DESCRIPTION
This script launches the Web browser with the Apple online manual.
.EXAMPLE
PS> ./show-apple-manual
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://support.apple.com/manuals"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows the Audacity manual
.DESCRIPTION
This script launches the Web browser with the Audacity online manual.
.EXAMPLE
PS> ./show-audacity-manual
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://manual.audacityteam.org/"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows the SystemRescue manual
.DESCRIPTION
This script launches the Web browser with the SystemRescue online manual.
.EXAMPLE
PS> ./show-system-rescue-manual
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.system-rescue.org/manual/"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows the Toyota manuals
.DESCRIPTION
This script launches the Web browser with the Toyota online manuals.
.EXAMPLE
PS> ./show-toyota-manual
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.toyota.com/owners/resources/warranty-owners-manuals"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows the Volkswagen manual
.DESCRIPTION
This script launches the Web browser with the Volkswagen manual.
.EXAMPLE
PS> ./show-volkswagen-manual
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://userguide.volkswagen.de"
exit 0 # success