Skip to content

open-default-browser

Opens the default browser

#requires -version 5.1

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

try {
	Start-Process $URL
	exit 0
} catch {
throw
}

Specifies the URL

An interactive directory of PowerShell scripts.