PowerShell/Scripts/open-browser.ps1

20 lines
437 B
PowerShell
Raw Normal View History

2020-12-10 09:54:40 +01:00
#!/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 {
2020-12-25 11:30:43 +01:00
if ($URL -eq "" ) {
$URL = "http://www.fleschutz.de"
}
2020-12-10 09:54:40 +01:00
Start-Process $URL
exit 0
} catch {
2020-12-25 11:30:43 +01:00
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-10 09:54:40 +01:00
exit 1
}