-
-
Notifications
You must be signed in to change notification settings - Fork 546
Expand file tree
/
Copy pathopen-firefox.ps1
More file actions
executable file
·33 lines (30 loc) · 735 Bytes
/
open-firefox.ps1
File metadata and controls
executable file
·33 lines (30 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<#
.SYNOPSIS
Launches the Firefox browser
.DESCRIPTION
This PowerShell script launches the Mozilla Firefox Web browser.
.EXAMPLE
PS> ./open-firefox
.PARAMETER URL
Specifies an URL
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
#requires -version 5.1
param([string]$URL = "https://www.fleschutz.de")
try {
$App = Get-AppxPackage -Name Mozilla.FireFox
if ($App.Status -eq "Ok") {
# starting Firefox UWP app:
explorer.exe shell:appsFolder\$($App.PackageFamilyName)!FIREFOX
} else {
# starting Firefox program:
start-process firefox.exe "$URL"
}
exit 0 # success
} catch {
"⚠️ ERROR: $($Error[0]) (script line $($_.InvocationInfo.ScriptLineNumber))"
exit 1
}