I'm developing a virtual driver and QA needs to check out the x64 version on several Win7 machines. I have strictly followed the instructions on generating certificate for test purposes but I still have some problems. So, I've done the following steps:
Makecert -r -pe -n "CN=TestCertForWDK" -ss "TestCert" mccert.cer
I've added the following two lines in the installer to make auto cert installation on the remote machines
certmgr.exe -add mccert.cer -s -r localMachine root
certmgr.exe -add mccert.cer -s -r localMachine trustedpublisher
Inf2cat.exe /driver:D:\Projects\MyDrv\package\ /os:7_X64
And finally
signtool sign /a /v /s "TestCert" /n "TestCertForWDK" mydrv.cat
signtool sign /a /v /s "TestCert" /n "TestCertForWDK" mydrv.sys
Btw, at first I've tried installing via devcon. It reported that "devcon succeeded" but the device in the device manager was marked with yellow exclamation mark (not trusted signature).
Later, I've tried using hdwwiz - when I manually enter the path to driver (Have disk) - hdwwiz shows that driver has a signature and installation proceeds without any warnings. But after that, as I've already metioned, the device is not working because of invalid signature (yellow "!")
I have an account on WinQual, but the driver is still in development state and I dont want to pay money for submission yet. Maybe I'm doing something wrong? Is it possible to install x64 driver with my own makecert.exe generated certificate and WITHOUT disabling driver signature on the end-user PC (this is not acceptable for me)?