mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-07-01 13:10:13 +02:00
Add show-azure-manual.ps1 and show-windows-manual.ps1
This commit is contained in:
15
Scripts/show-azure-manual.ps1
Executable file
15
Scripts/show-azure-manual.ps1
Executable file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Shows the Microsoft Azure manual
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with the Microsoft Azure manual.
|
||||
.EXAMPLE
|
||||
PS> ./show-azure-manual
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "https://docs.microsoft.com/en-us/azure"
|
||||
exit 0 # success
|
15
Scripts/show-windows-manual.ps1
Executable file
15
Scripts/show-windows-manual.ps1
Executable file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Shows the Microsoft Windows manual
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with the Microsoft Windows manual.
|
||||
.EXAMPLE
|
||||
PS> ./show-windows-manual
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "https://docs.microsoft.com/en-us/windows/"
|
||||
exit 0 # success
|
Reference in New Issue
Block a user