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

setting lock preferences on win 10 enterprise

  • 1 resposta
  • 1 tem este problema
  • 5 visualizações
  • Última resposta por cor-el

more options

I created the .cfg and .js files. the .js file has the following lines in it: pref("general.config.filename", "mozilla.cfg"); pref("general.config.obscure_value", 0); When i implement the lock preferences, they do not get set. If i remove the line: pref("general.config.obscure_value", 0); the lock preferences do get set however when i open Firefox i receive an autoconfig alert. I need to have the lock preferences set and not receive an autoconfig alert I am using Mozilla Firefox V63.0.3. Any assistance would be greatly appreciated.

I created the .cfg and .js files. the .js file has the following lines in it: pref("general.config.filename", "mozilla.cfg"); pref("general.config.obscure_value", 0); When i implement the lock preferences, they do not get set. If i remove the line: pref("general.config.obscure_value", 0); the lock preferences do get set however when i open Firefox i receive an autoconfig alert. I need to have the lock preferences set and not receive an autoconfig alert I am using Mozilla Firefox V63.0.3. Any assistance would be greatly appreciated.

Modificado por user1607246 a

Todas as respostas (1)

more options

Are you starting each of the two files with a comment line? You can also use Unix line endings (LF and not CR/LF).

You can use the autoconfig.cfg file in the Firefox program folder to initialize (set/lock) preferences and run privileged JavaScript code.

The autoconfig.cfg file needs to be in the main Firefox program folder.

This requires an autoconfig.cfg.js file in the "defaults\pref" folder where the channel-prefs.js file is located that specifies to use autoconfig.cfg.

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

The autoconfig.cfg and autoconfig.js files need to start with a comment line (//) and autoconfig.cfg needs to use Unix line endings (LF).