Nosiu.pl Certificates

Internal CA - How to import

  • Using PowerShell

    1. Assuming the path to your downloaded CA certificate as C:\ca.pem, run: Import-Certificate -FilePath "C:\ca.pem" -CertStoreLocation Cert:\LocalMachine\Root
    2. Set -CertStoreLocation to Cert:\CurrentUser\Root in case you want to trust certificates only for the user that is currently logged in.
  • Using Command Prompt (CMD)

    1. Run: certutil.exe -addstore root C:\ca.pemcertutil.exe is a built-in tool and adds a system-wide trust anchor.
  • Using GUI

    1. Open a new Microsoft Management Console window using the Run command:certlm.mscor:certmgr.msc
    2. In the new window, right click on Trusted Root Certification Authorities, then choose All tasks and Import.
    3. Choose your preferred storage (for all users must run mmc as administrator), then locate the file and leave all options as default.