Add show-ant-manual.ps1 and show-msbuild-manual.ps1

This commit is contained in:
Markus Fleschutz 2021-12-04 16:22:16 +01:00
parent e7588e7b8c
commit 3e72ee7e3c
3 changed files with 31 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 online manual - replace [name] by: `Apple`, `Audacity`, `Azure`, `Bash`, `Blender`, `Chrome`, `Edge`, `Firefox`, `GCC`, `Git`, `Jenkins`, `OBS Studio`, `PowerShell`, `Serenade`, `SystemRescue`, `Toyota`, `Vim`, `Voice` *(yes, this page!)*, `Volkswagen`, or `Windows`.
* launches the default Web browser with the given online manual - replace [name] by: `Ant`, `Apple`, `Audacity`, `Azure`, `Bash`, `Blender`, `Chrome`, `Edge`, `Firefox`, `GCC`, `Git`, `Jenkins`, `MSBuild`, `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 Ant manual
.DESCRIPTION
This script launches the Web browser with the Apache Ant manual.
.EXAMPLE
PS> ./show-ant-manual
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://ant.apache.org/manual/index.html"
exit 0 # success

View File

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