搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

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

  • 3 回覆
  • 1 有這個問題
  • 39 次檢視
  • 最近回覆由 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

被選擇的解決方法

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

從原來的回覆中察看解決方案 👍 1

所有回覆 (3)

more options

選擇的解決方法

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: