PowerShell/Scripts/open-browser.ps1
2021-10-04 21:29:23 +02:00

24 lines
486 B
PowerShell
Executable File

<#
.SYNOPSIS
Opens the default Web browser
.DESCRIPTION
Opens the default Web browser, optional with given URL
open-browser.ps1 [<URL>]
.EXAMPLE
PS> ./open-browser
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
param([string]$URL = "http://www.fleschutz.de")
try {
Start-Process $URL
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}