PowerShell/Docs/open-stack-overflow.md
2023-08-06 21:36:33 +02:00

1.1 KiB

open-stack-overflow.ps1

This script launches the Web browser with the Stack Overflow website.

Parameters

PS> ./open-stack-overflow.ps1 [<CommonParameters>]

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

Example

PS> ./open-stack-overflow

Notes

Author: Markus Fleschutz | License: CC0

https://github.com/fleschutz/PowerShell

Script Content

<#
.SYNOPSIS
	Opens the Stack Overflow website
.DESCRIPTION
	This script launches the Web browser with the Stack Overflow website.
.EXAMPLE
	PS> ./open-stack-overflow
.LINK
	https://github.com/fleschutz/PowerShell
.NOTES
	Author: Markus Fleschutz | License: CC0
#>

& "$PSScriptRoot/open-default-browser.ps1" "https://stackoverflow.com"
exit 0 # success

(generated by convert-ps2md.ps1 using the comment-based help of open-stack-overflow.ps1 as of 08/06/2023 21:36:15)