首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >StartService失败577自签名内核驱动程序,如何修复?

StartService失败577自签名内核驱动程序,如何修复?
EN

Stack Overflow用户
提问于 2020-08-28 03:30:42
回答 1查看 731关注 0票数 1

我正在尝试在Windows 10 (10.0.18362)上安装自签名内核驱动程序,这里介绍了我正在执行的步骤以及遇到的错误。如何解决这个问题?谢谢

代码语言:javascript
运行
复制
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.
EN

回答 1

Stack Overflow用户

发布于 2020-08-28 03:53:24

阅读Driver Signing让我相信,无论证书安装在根存储中,自签名证书都不会对驱动程序起作用。您可以完全禁用证书检查以进行测试(我知道这在过去是可能的,但不确定现在是否仍然可以),但我不建议在任何情况下都这样做,除非是一次性VM或完全隔空的硬件。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/63622996

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档