Skip to content

Open-DefaultBrowser

Opens the default browser

#requires -version 5.1

param([string]$URL = "https://www.fleschutz.de")

try {
	Start-Process $URL
	exit 0 # success
} catch {
	"?? ERROR: $($Error[0]) (script line $($_.InvocationInfo.ScriptLineNumber))"
	exit 1
}

Specifies the URL

An interactive directory of PowerShell scripts.