Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

Saiba mais

Esta discussão foi arquivada. Faça uma nova pergunta se precisa de ajuda.

can you add a certifcate to the browser that would work globally for all users?

  • 8 respostas
  • 1 tem este problema
  • 2 visualizações
  • Última resposta de sheldondh

more options

When we add an SSL certificate from our SonicWALL it only works for the user that added it. When another user logs onto the same computer the new user has to add the certificate again. Is there a way to add the certificate so that each user does not have to do this? We are running Windows 10 on the client machines.

When we add an SSL certificate from our SonicWALL it only works for the user that added it. When another user logs onto the same computer the new user has to add the certificate again. Is there a way to add the certificate so that each user does not have to do this? We are running Windows 10 on the client machines.

Todas as respostas (8)

more options

hi, please see https://wiki.mozilla.org/CA:AddRootToFirefox for a couple of ideas.

more options

thanks... just a little above my head. Where do you go to set the preference "security.enterprise_roots.enabled"

more options

your browser information said that you are on firefox 47 - this particular method will only work in newer versions of firefox though.

in order to set the preference for all users of a computer see the Configuration section in the article at https://developer.mozilla.org/en-US/Firefox/Enterprise_deployment (otherwise those settings can be tweaked when you enter about:config into the firefox address bar - this only affects the current user/profile though)

more options

thanks... just a little above my head. Where do you go to set the preference "security.enterprise_roots.enabled"

more options

Thank you for the help. I'll play with that and see how far I get.

more options

I set up an autoconfig in defaults/perf

// Just a comment perf("general.config.filename", "mozilla.cfg"); perf("general.config.obscure_value", 0)

then edited mozilla.cfg and added my change // try lockPref("app.update.enabled", false); pref("security.enterprise_roots.enabled", true); lockPref("app.update.autoUpdateEnabled", false); lockPref("extensions.update.enabled", false); lockPref("extensions.update.autoUpdateEnabled", false); catch(e) { displayError("mozilla.cfg", e); no workie do I have the syntex right? its dose not seem to be doing any of the line items

more options

Note that you made a typos in the local-settings.js file (perf instead of pref):

perf("general.config.filename", "mozilla.cfg");
perf("general.config.obscure_value", 0);
more options

OK I fixed the typo Thanks. still no joy. So I removed everything from the default file except what i want to happen

// Just a comment pref("general.config.filename", "mozilla.cfg"); pref("general.config.obscure_value", 0)


// try pref("security.enterprise_roots.enabled", true);

also tried it with and without a  ; after the last line.