PowerShell/Scripts/open-firefox-browser.ps1
2021-11-23 07:45:50 +01:00

25 lines
513 B
PowerShell
Executable File

<#
.SYNOPSIS
Launches the Firefox browser
.DESCRIPTION
This script launches the Mozilla Firefox Web browser.
.EXAMPLE
PS> ./open-firefox-browser
.PARAMETER URL
Specifies an URL
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
param([string]$URL = "http://www.fleschutz.de")
try {
start-process firefox.exe "$URL"
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}