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

@ -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