You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When you click on "Configure", users get a warning about installing a CA certificate in their certificate store.
Describe the solution you'd like
Install CA certificate silently.
I've seen we used -addstore option of certutil and it seems that -installcert option as -silent flag and do same thing.
The text was updated successfully, but these errors were encountered:
The certutil is use to interact with an internal PKI mostly and can't be used to push one specific Root CA cert.
When you add a Root certificate manually, the wizard choose by default to drop it under Intermediate Certificate Authority so that means that you need to move it manually to the Trusted Root Certification Authorities.
The option that @JeGoi found is that you can have a CLI tool that can click for you on the "YES" on the trust Root CA questions on the warring. But it would require to package it and test it.
My final thought on that is that warning is normal because it's very critical to install a Trusted Root CA and having a warning is not a big deal but can create issue down the road if the user click No on the trust.
Is your feature request related to a problem? Please describe.
When you click on "Configure", users get a warning about installing a CA certificate in their certificate store.
Describe the solution you'd like
Install CA certificate silently.
I've seen we used -addstore option of
certutil
and it seems that -installcert option as-silent
flag and do same thing.The text was updated successfully, but these errors were encountered: