Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Weitere Informationen

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

  • 3 Antworten
  • 1 hat dieses Problem
  • 39 Aufrufe
  • Letzte Antwort von 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

Ausgewählte Lösung

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

Diese Antwort im Kontext lesen 👍 1

Alle Antworten (3)

more options

Ausgewählte Lösung

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: