Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

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

  • 8 답장
  • 1 이 문제를 만남
  • 2 보기
  • 최종 답변자: 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.

모든 댓글 (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.