Windows System Software -- Consulting, Training, Development -- Unique Expertise, Guaranteed Results
The free OSR Learning Library has more than 50 articles on a wide variety of topics about writing and debugging device drivers and Minifilters. From introductory level to advanced. All the articles have been recently reviewed and updated, and are written using the clear and definitive style you've come to expect from OSR over the years.
Check out The OSR Learning Library at: https://www.osr.com/osr-learning-library/
The driver attestation is failing with below error
Error 1303 in honeywell_cdc.inf; Found legacy AddReg operation defining co-installers (CoInstallers32).Failed INF validation. INF did not pass Desktop validation (InfVerif /k).
Here is the part of code where it is pointing to:
[Dev_w_CTS.NT.CoInstallers]
AddReg=CoInstaller_AddReg
CopyFiles=CoInstaller_CopyFiles
[CoInstaller_AddReg]
HKR,,CoInstallers32,0x00010000, \
"wdfcoinstaller01009.dll,WdfCoInstaller", \
"acmfccoi.dll,acm_force_com_co_installer"
Upcoming OSR Seminars | ||
---|---|---|
OSR has suspended in-person seminars due to the Covid-19 outbreak. But, don't miss your training! Attend via the internet instead! | ||
Kernel Debugging | 13-17 May 2024 | Live, Online |
Developing Minifilters | 1-5 Apr 2024 | Live, Online |
Internals & Software Drivers | 11-15 Mar 2024 | Live, Online |
Writing WDF Drivers | 26 Feb - 1 Mar 2024 | Live, Online |
Comments
"As designed", you're not allowed to have a CoInstallers section anymore:
https://learn.microsoft.com/en-us/windows-hardware/drivers/install/inf-ddinstall-coinstallers-section
-scott
OSR
Is there any way to implement this without using legacy AddReg operation defining co-installers