PowerShell/Scripts/open-browser.ps1
2021-08-29 17:50:03 +02:00

23 lines
436 B
PowerShell
Executable File

<#
.SYNOPSIS
open-browser.ps1 [<URL>]
.DESCRIPTION
Opens the default Web browser, optional with given URL.
.EXAMPLE
PS> .\open-browser.ps1
.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
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}