是否可以通过命令行从 sys 驱动程序文件中提取数字签名证书?
使用 3rd 方工具还是内置的 Windows 工具?
谢谢
最佳答案
使用powershell很容易:
$driverFile = 'C:\temp\myDriver.sys';
$outputFile = 'C:\temp\output.cer';
$exportType = [System.Security.Cryptography.X509Certificates.X509ContentType]::Cert;
$cert = (Get-AuthenticodeSignature $driverFile).SignerCertificate;
[System.IO.File]::WriteAllBytes($outputFile, $cert.Export($exportType));
关于command-line - 从 .sys 文件中提取证书,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36775331/