我正在尝试在Windows 10 (10.0.18362)上安装自签名内核驱动程序,这里介绍了我正在执行的步骤以及遇到的错误。如何解决这个问题?谢谢
c:\>makecert -r -pe -ss PrivateCertStore -n CN=Contoso.com(Test) -eku 1.3.6.1.5.5.7.3.3 ContosoTest.cer
c:\>certmgr /add ContosoTest.cer /s /r localMachine root
// now manually verified Cert Store, yes the Contoso test cert is there
c:\>Signtool sign /v /fd sha256 /s PrivateCertStore /n Contoso.com(Test) /t http://timestamp.digicert.com "C:\VC\TPriority\x64\TPriorityDriver.sys"
c:\>sc create "TPriority" binPath="c:/windows/system32/drivers/TPriorityDriver.sys" type=kernel
// now copied file TPriorityDriver.sys to "C\Windows\System32\drivers" path
c:\>sc start "TPriority"
[SC] StartService FAILED 577:
Windows cannot verify the digital signature for this file. A recent hardware or software change might have installed a file that is signed incorrectly or damaged, or that might be malicious software from an unknown source.
发布于 2020-08-28 03:53:24
阅读Driver Signing让我相信,无论证书安装在根存储中,自签名证书都不会对驱动程序起作用。您可以完全禁用证书检查以进行测试(我知道这在过去是可能的,但不确定现在是否仍然可以),但我不建议在任何情况下都这样做,除非是一次性VM或完全隔空的硬件。
https://stackoverflow.com/questions/63622996
复制相似问题