Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

Learn More

setting lock preferences on win 10 enterprise

  • 1 réponse
  • 1 a ce problème
  • 5 vues
  • Dernière réponse par 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.

Modifié le par user1607246

Toutes les réponses (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).