Importing a Certificate via SCCM
Hi guys,
I've spent most of the day trying different things to install a certificate via a batch file so I can deploy it to machines via SCCM.
It's for a Microsoft Lync package and the certificate extension is ".p7b".
I have read you can use the CertUtil.exe but it's just not working for me. Maybe this will only work for ".cer" certificates?
I've never really worked with certificates before so it's all new to me, any guidance is appreciated.
Answers (3)
Have you tried certmgr.exe tool?
http://msdn.microsoft.com/en-us/library/windows/desktop/aa376553(v=vs.85).aspx
I found the correct syntax:
certutil -addstore -f "CA" certificate.p7b
Hopefully this helps someone in the future :)