From 3e72ee7e3c0b61d8d2de24bde442b60efd8d0be3 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Sat, 4 Dec 2021 16:22:16 +0100 Subject: [PATCH] Add show-ant-manual.ps1 and show-msbuild-manual.ps1 --- Docs/VoiceControl.md | 2 +- Scripts/show-ant-manual.ps1 | 15 +++++++++++++++ Scripts/show-msbuild-manual.ps1 | 15 +++++++++++++++ 3 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 Scripts/show-ant-manual.ps1 create mode 100644 Scripts/show-msbuild-manual.ps1 diff --git a/Docs/VoiceControl.md b/Docs/VoiceControl.md index e613060e..a43a87be 100644 --- a/Docs/VoiceControl.md +++ b/Docs/VoiceControl.md @@ -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. diff --git a/Scripts/show-ant-manual.ps1 b/Scripts/show-ant-manual.ps1 new file mode 100644 index 00000000..8f538707 --- /dev/null +++ b/Scripts/show-ant-manual.ps1 @@ -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 diff --git a/Scripts/show-msbuild-manual.ps1 b/Scripts/show-msbuild-manual.ps1 new file mode 100644 index 00000000..f13e0c0d --- /dev/null +++ b/Scripts/show-msbuild-manual.ps1 @@ -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