mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-23 23:29:02 +01:00
Add some show-*-manual.ps1 scripts
This commit is contained in:
parent
09cc35b15e
commit
9b86a13895
@ -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.
|
||||
|
||||
|
||||
|
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
|
Loading…
Reference in New Issue
Block a user