mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-06-30 20:50:02 +02:00
Add some show-*-manual.ps1 scripts
This commit is contained in:
15
Scripts/show-chrome-manual.ps1
Executable file
15
Scripts/show-chrome-manual.ps1
Executable file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Shows the Google Chrome manual
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with the Google Chrome manual.
|
||||
.EXAMPLE
|
||||
PS> ./show-chrome-manual
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "https://support.google.com/chrome/?hl=en"
|
||||
exit 0 # success
|
15
Scripts/show-powershell-manual.ps1
Executable file
15
Scripts/show-powershell-manual.ps1
Executable file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Shows the PowerShell manual
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with the PowerShell manual.
|
||||
.EXAMPLE
|
||||
PS> ./show-powershell-manual
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "https://docs.microsoft.com/en-us/powershell/"
|
||||
exit 0 # success
|
15
Scripts/show-serenade-manual.ps1
Executable file
15
Scripts/show-serenade-manual.ps1
Executable file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Shows the Serenade manual
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with the Serenade manual.
|
||||
.EXAMPLE
|
||||
PS> ./show-serenade-manual
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "https://serenade.ai/docs/"
|
||||
exit 0 # success
|
Reference in New Issue
Block a user