mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-03 05:31:03 +02:00
Add show-ant-manual.ps1 and show-msbuild-manual.ps1
This commit is contained in:
parent
e7588e7b8c
commit
3e72ee7e3c
@ -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.
|
||||
|
||||
|
||||
|
15
Scripts/show-ant-manual.ps1
Normal file
15
Scripts/show-ant-manual.ps1
Normal 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
|
15
Scripts/show-msbuild-manual.ps1
Normal file
15
Scripts/show-msbuild-manual.ps1
Normal 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
|
Loading…
Reference in New Issue
Block a user