Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Научете повече

Uninstall all versions of firefox silently

  • 3 отговора
  • 1 има този проблем
  • 4 изгледи
  • Последен отговор от user633449

more options

I am unable to find a way to silently uninstall multiple different versions of firefox in an enterprise environment. We currently have 14 different versions spread out across multiple systems and windows OS's and need a command line that will remove them from workstations.

The <Firefox Full Installer.exe> /S option doesn't work very well, as it only uninstalls the .exe's version, and if that version isn't found, installs it instead!

Any help would be appreciated. I'm following this doc and its not helping at all: https://wiki.mozilla.org/Installer:Command_Line_Arguments

I am unable to find a way to silently uninstall multiple different versions of firefox in an enterprise environment. We currently have 14 different versions spread out across multiple systems and windows OS's and need a command line that will remove them from workstations. The <Firefox Full Installer.exe> /S option doesn't work very well, as it only uninstalls the .exe's version, and if that version isn't found, installs it instead! Any help would be appreciated. I'm following this doc and its not helping at all: https://wiki.mozilla.org/Installer:Command_Line_Arguments

Всички отговори (3)

more options

I've moved your post to the Firefox for Enterprise forum, where you should be able to get some more targeted help.

I assume you're removing these old versions so you can get all users up to date on Firefox ESR 60?

more options

That is correct. The systems that have it, we are asking if its really required, and if so, to get those under a standard version that I can manage.

Thank you for moving the question to the appropriate section. I was sorta successful in doing an forced uninstall using this powershell code:

Start-Process 'C:\Program Files\Mozilla Firefox\uninstall\helper.exe' -ArgumentList "/s" -Wait -ErrorAction SilentlyContinue Start-Process "C:\Program Files (x86)\Mozilla Firefox\uninstall\helper.exe" -ArgumentList "/s" -Wait -ErrorAction SilentlyContinue

$FirefoxInstallLocations = Get-ChildItem -Path 'C:\Users\*' -Include "Helper.exe" -Recurse -Force -ErrorAction SilentlyContinue

FOREACH($FireFoxInstallLocation in $FireFoxInstallLocations){ $SetupFile = $FireFoxInstallLocation.ToString() Start-Process -FilePath $SetupFile -ArgumentList "/s" -Wait -ErrorAction SilentlyContinue }

Променено на от Rafius

more options

I'm not sure if that's the best way or not, but I just wanted to point you to

https://www.mozilla.org/firefox/organizations/

You can use Firefox 60ESR (I wouldn't suggest 52) with full support for group policies and deployments. I hope that helps!

I'd be interested in what it would take to get your organization to switch to Firefox entirely?