搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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?