Nosiu.pl Certificates
Internal CA - How to import
Using PowerShell
- Assuming the path to your downloaded CA certificate as C:\ca.pem, run:
Import-Certificate -FilePath "C:\ca.pem" -CertStoreLocation Cert:\LocalMachine\Root - Set
-CertStoreLocationtoCert:\CurrentUser\Rootin case you want to trust certificates only for the user that is currently logged in.
- Assuming the path to your downloaded CA certificate as C:\ca.pem, run:
Using Command Prompt (CMD)
- Run:
certutil.exe -addstore root C:\ca.pemcertutil.exeis a built-in tool and adds a system-wide trust anchor.
- Run:
Using GUI
- Open a new Microsoft Management Console window using the Run command:
certlm.mscor:certmgr.msc - In the new window, right click on Trusted Root Certification Authorities, then choose All tasks and Import.
- Choose your preferred storage (for all users must run mmc as administrator), then locate the file and leave all options as default.
- Open a new Microsoft Management Console window using the Run command: