Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

FireFox "Software installation has been disabled by your system administrator"

Installing Firebug in FireFox I get this error message:

Software installation has been disabled by your system administrator

I am a administrator of this PC, how do I allow installation of Firefox addons?

Note: answering my own problem to help others in the future.

like image 358
Jeremy Thompson Avatar asked Sep 10 '15 06:09

Jeremy Thompson


1 Answers

The root cause is this setting: enter image description here

This blog posted 3 years ago has a solution with Windows XP, the trick back then was to change this setting:

user_pref("xpinstall.enabled", true); in the file C:\Documents and Settings\UID\Application Data\Mozilla\Firefox\Profiles\fxlme5ka.default.


To do this on a recent version of Firefox, follow these steps:
  1. Close Firefox

  2. Open the C:\Program Files (x86)\Mozilla\Firefox\mozilla.cfg file in Notepad

  3. Comment out the rule that is blocking it:

// Block extensions
//lockPref("xpinstall.enabled", false); // prevent extensions

  1. Restart Firefox
like image 122
Jeremy Thompson Avatar answered Sep 20 '22 18:09

Jeremy Thompson