Hello,
I am trying to install Jabber using SCCM.
Prerequisite for Jabber is a small application from cisco which adds another network interface.
This application has a certificate which needs to be added to Trusted Publishers during the installation. I exported this certificate from an .msi and I am trying to add it before installing the software.
My script looks like this:
CertUtil -f -addstore “TrustedPublisher” "Cisco_certificate.cer" >> c:certutil.log
msiexec /i "msi_setup-3-2-4-0-6831.msi" /qn /norestart
According to certutil.log certificate is succesfully installed.
However:
1. I can't see any certificate in certmgr.msc
2. I get following popup during installation:
Can anyone help?