Firefox MSI Installer — Enterprise Deployment Guide (2026)

Mozilla Firefox is widely used in enterprise environments, particularly where security and privacy controls are a priority. This guide covers everything IT administrators need to deploy Firefox silently via SCCM, Intune, Group Policy and PowerShell in 2026, including ADMX templates for policy management.

Download Firefox MSI Installer

Mozilla provides official MSI installers for enterprise deployment. Download directly from Mozilla’s enterprise page at mozilla.org/firefox/enterprise. Firefox ESR (Extended Support Release) is recommended for enterprise environments as it receives security updates without feature changes for approximately one year.

  • Firefox MSI (Standard) — latest release, updates every 4 weeks
  • Firefox ESR MSI — recommended for enterprise, longer support cycle
  • Available in 64-bit and 32-bit versions

Silent Installation Command Line Switches

msiexec /i "Firefox Setup 115.0esr.msi" /qn /norestart
msiexec /i "Firefox Setup 115.0esr.msi" /qn /norestart /l*v "C:\Logs\FirefoxInstall.log"

Deploy Firefox via SCCM

  1. Download the Firefox ESR MSI from Mozilla’s enterprise page
  2. In the SCCM console go to Software Library → Application Management → Applications
  3. Click Create Application → select Windows Installer (*.msi file)
  4. Browse to the Firefox MSI — SCCM will auto-populate most fields
  5. Set the installation program to: msiexec /i "Firefox Setup 115.0esr.msi" /qn /norestart
  6. Set the detection method — check for file C:\Program Files\Mozilla Firefox\firefox.exe
  7. Deploy to your target collection

Deploy Firefox via Intune

  1. In the Intune portal go to Apps → Windows → Add
  2. Select Line-of-business app
  3. Upload the Firefox MSI file
  4. Set the install command: msiexec /i "Firefox Setup 115.0esr.msi" /qn /norestart
  5. Assign to your device or user groups

Deploy Firefox via Group Policy

  1. Copy the MSI to a network share accessible by all machines
  2. Open Group Policy Management Console
  3. Create or edit a GPO linked to your target OU
  4. Navigate to Computer Configuration → Policies → Software Settings → Software Installation
  5. Right-click → New → Package → select the MSI from the network share
  6. Select Assigned as the deployment method

Deploy Firefox via PowerShell

$msiPath = "\server\share\Firefox Setup 115.0esr.msi"
$arguments = "/i `"$msiPath`" /qn /norestart /l*v C:\Logs\FirefoxInstall.log"
Start-Process -FilePath "msiexec.exe" -ArgumentList $arguments -Wait -NoNewWindow

Manage Firefox with ADMX Group Policy Templates

Download Firefox ADMX templates from github.com/mozilla/policy-templates and copy to \domain\SYSVOL\domain\Policies\PolicyDefinitions\. Key policies include setting homepage, disabling private browsing, blocking URLs, managing extensions, disabling Firefox Sync and controlling updates.

Disable Firefox Auto-Updates

reg add "HKLM\SOFTWARE\Policies\Mozilla\Firefox" /v "DisableAppUpdate" /t REG_DWORD /d 1 /f

Firefox ADM Group Policy Templates

We also provide Firefox ADM Group Policy Templates for download: Download Firefox ADM Group Policy Templates

Frequently Asked Questions

What is Firefox ESR and should I use it for enterprise?

Firefox ESR (Extended Support Release) receives security updates but not new features for approximately one year making it easier to manage in corporate environments. ESR is strongly recommended for enterprise deployment.

Does Firefox MSI support silent installation?

Yes — use msiexec /i Firefox.msi /qn /norestart for completely silent installation with no user interaction or reboot prompt.

How do I check the Firefox version via PowerShell?

Run: (Get-Item C:\Program Files\Mozilla Firefox\firefox.exe).VersionInfo.ProductVersion

Can I lock Firefox settings so users cannot change them?

Yes — using Firefox ADMX Group Policy templates you can lock virtually any Firefox setting. Locked settings are greyed out in the Firefox interface and cannot be changed by users.

How do I silently uninstall Firefox?

Run: msiexec /x {PRODUCT-CODE} /qn /norestart — find the product code using Get-WmiObject Win32_Product where Name like Firefox

About The Author


Discover more from TechyGeeksHome

Subscribe to get the latest posts sent to your email.

Leave a comment