PowerShell/Scripts/open-browser.ps1
Markus Fleschutz 94106839fd Cleanup
2020-12-25 10:30:43 +00:00

20 lines
437 B
PowerShell
Executable File

#!/snap/bin/powershell
# Syntax: ./open-browser.ps1 [<URL>]
# Description: starts the default Web browser, optional with given URL
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
param([string]$URL)
try {
if ($URL -eq "" ) {
$URL = "http://www.fleschutz.de"
}
Start-Process $URL
exit 0
} catch {
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}