Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Can I delete all default search engines but google for all users?

  • 3 replies
  • 1 has this problem
  • 39 views
  • Last reply by cor-el

more options

I work for a school district which uses web filtering both in network and out. We have been running across a situation where our students are able to switch search engines from Google to Yahoo in order to see inappropriate material. We have been working with our outside web filtering vendor to stop this from happening but so far no resolution to the problem. As I am getting ready to image about 600 computers for next fall I, the staff, the admins and especially the Parents (I am sure) would like this to not be the case.

My question is this. Is there any way to modify the search preferences in the Firefox app so that all the students can use to search is Google? Can I do it to the app itself or is this another case where the settings are all stored in the users profile?

Thanks

I work for a school district which uses web filtering both in network and out. We have been running across a situation where our students are able to switch search engines from Google to Yahoo in order to see inappropriate material. We have been working with our outside web filtering vendor to stop this from happening but so far no resolution to the problem. As I am getting ready to image about 600 computers for next fall I, the staff, the admins and especially the Parents (I am sure) would like this to not be the case. My question is this. Is there any way to modify the search preferences in the Firefox app so that all the students can use to search is Google? Can I do it to the app itself or is this another case where the settings are all stored in the users profile? Thanks

Chosen solution

Look into creating user.js and locking the settings so the local user can't change it. This should help! https://developer.mozilla.org/en-US/d.../A_brief_guide_to_Mozilla_preferences

Read this answer in context 👍 1

All Replies (3)

more options

Chosen Solution

Look into creating user.js and locking the settings so the local user can't change it. This should help! https://developer.mozilla.org/en-US/d.../A_brief_guide_to_Mozilla_preferences

more options

Thanks for the help. Your a lifesaver.

more options

You can remove the default search engines except Google in the browser\searchplugins folder in the Firefox program folder.


You cam use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.

Place a local-settings.js file in the defaults\pref folder where also the channel-prefs.js file is located to specify using mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0);

These functions can be used in the mozilla.cfg file:

defaultPref();	// set new default value
pref();		// set pref, allow changes in current session
lockPref();	// lock pref, disallow changes

See: