mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-08 20:54:38 +02:00
Add some show-*-manual.ps1 scripts
This commit is contained in:
15
Scripts/show-apple-manual.ps1
Normal file
15
Scripts/show-apple-manual.ps1
Normal 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
|
15
Scripts/show-audacity-manual.ps1
Normal file
15
Scripts/show-audacity-manual.ps1
Normal 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
|
15
Scripts/show-system-rescue-manual.ps1
Normal file
15
Scripts/show-system-rescue-manual.ps1
Normal 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
|
15
Scripts/show-toyota-manual.ps1
Normal file
15
Scripts/show-toyota-manual.ps1
Normal 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
|
15
Scripts/show-volkswagen-manual.ps1
Normal file
15
Scripts/show-volkswagen-manual.ps1
Normal 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
|
Reference in New Issue
Block a user