mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 21:07:40 +02:00
Renamed folder Scripts to scripts
This commit is contained in:
31
scripts/open-firefox.ps1
Executable file
31
scripts/open-firefox.ps1
Executable file
@ -0,0 +1,31 @@
|
||||
<#
|
||||
.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
|
||||
#>
|
||||
|
||||
param([string]$URL = "http://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 in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||
exit 1
|
||||
}
|
Reference in New Issue
Block a user