This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

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

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

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

  • 3 antwoorde
  • 1 het hierdie probleem
  • 39 views
  • Laaste antwoord deur 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

Gekose oplossing

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

Lees dié antwoord in konteks 👍 1

All Replies (3)

more options

Gekose oplossing

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: