Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Learn More

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

  • 3 respostas
  • 1 tem este problema
  • 39 visualizações
  • Última resposta por 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

Solução escolhida

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

Ler esta resposta no contexto 👍 1

Todas as respostas (3)

more options

Solução escolhida

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: