Posted on 09-22-2014 11:10 AM
Hi all--I've found some mention here of certificate issues with the SCCM plug-in, but nothing for the issue I'm running into. I'm following the article posted here, and I'm on Step 4: Register the ISV Proxy Certificate with SCCM (I'm using our AD certificate authority).
I'm wondering if what is messing me up is that I'm intending to install on a management point, not the CAS? It seems like maybe the instructions are geared toward installing the proxy service on either the CAS or some other Windows box that is not in the SCCM hierarchy. Any ideas?
Posted on 09-23-2014 05:44 AM
Hi Steve -
It sounds like it could be two different things going on.
Based on the KB article you linked to, it appears you are using an older version of the plug-in. There is a newer version now available that eliminates the need of installing any certificates on the JSS server, and does not need to be re-installed on the JSS server after upgrading the JSS. The KB article configuring the certificates for that version is https://jamfnation.jamfsoftware.com/article.html?id=371.
I hope this helps, and if you need more assistance reach out to support and ask to be put in touch with Lois the topic specialist for the plug-ins.
Doug
Posted on 11-16-2017 12:42 PM
Running into the same issue, did you find a solution?
Posted on 11-20-2017 05:34 AM
My fix for this issue was to login to SCCM DB server and run this SQL query against SCCM DB:
"select * from ClientKeyData where Thumbprint = 0x<cert_thumbprint>"
Where <cert_thumbprint> is the thumbprint of your ISV certificate. I had to type mine in manually as copying and pasting from the cert window gave weird SQL query errors.
After I did this there was a single object with that cert thumbprint, which I needed to remove to be able to register the ISV again correctly. So I ran this SQL:
"DELETE from ClientKeyData where Thumbprint = 0x<cert_thumbprint>"
This freed up the ISV cert and I was able to re-register the ISV to make the JAMF SCCM plugin work again. I am running into other issues now though, hopefully this helps though!
Posted on 09-21-2018 02:36 PM
As a follow up - the issue in my case with this was that when you issue the ISV cert to your JAMF proxy server, by default SCCM sees it as a new certificate for the server (assuming you install SCCM on servers). The client then re-registers with the site with the new cert before you can import it, and the generic function the ISV import dialog is using is searching ALL client key data for the certificate - despite what the error message says.
One workaround for this is to re-issue your normal SCCM client cert on the server after you enroll in the ISV cert, to force another re-registration and "free" the certificate from being "in use" again.