美文网首页
Window 10 调试服务进程(本地签名)

Window 10 调试服务进程(本地签名)

作者: joyousx | 来源:发表于2020-11-27 16:36 被阅读0次

    (vs2008 以上,自带以下所需工具)

    1. 制作证书:(使用以下 MakeCert 命令创建 Contoso.com (测试) 证书)
      makecert -r -pe -ss PrivateCertStore -n CN=Contoso.com(Test) ContosoTest.cer

    2. 打开测试:(管理员权限,需要重启)
      bcdedit /set testsigning on

    3. 信任:(管理员权限)
      CertMgr.exe /add ContosoTest.cer /s /r localMachine root

    4. 签名:
      Signtool sign /v /s PrivateCertStore /n Contoso.com(Test) /t http://timestamp.digicert.com tstamd64.cat

    5. 验证:
      signtool verify /v /kp ascore-new.exe

    说明:
    服务 和 驱动,需要有 Cross Certificate Chain

    相关文章

      网友评论

          本文标题:Window 10 调试服务进程(本地签名)

          本文链接:https://www.haomeiwen.com/subject/jfwxwktx.html