Added open-browser.ps1

This commit is contained in:
Markus Fleschutz
2020-12-10 08:54:40 +00:00
parent 411b9e8e55
commit d9423bf219
2 changed files with 22 additions and 0 deletions

21
Scripts/open-browser.ps1 Executable file
View File

@ -0,0 +1,21 @@
#!/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)
if ($URL -eq "" ) {
$URL = "http://www.fleschutz.de"
}
try {
Start-Process $URL
exit 0
} catch {
Write-Error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}