Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Signed driver appears as unsinged in device manager

Our software using signed drivers, everything works correctly. But for some reasons this driver appear as unsigned in device manager. In our case this makes unwanted warnings in failover cluster validation reports on Windows Server, which may make our customers a bit confused. What may cause such behaviour? Thanks.

enter image description here

like image 458
mxpv Avatar asked Nov 12 '22 18:11

mxpv


1 Answers

Found solution!
The problem was in missing cross certificate
Signing should look like this:

signtool sign /v /f "Cert.pfx" /p pwd /ac "Cross.cer" /t "http://timestamp.server" driver.sys

Cross certificates itself can be found here - http://msdn.microsoft.com/en-us/library/windows/hardware/dn170454(v=vs.85).aspx

like image 57
mxpv Avatar answered Dec 25 '22 20:12

mxpv