如何在Windows 7/8 / 8.1(尤其是64位)上使用未签名的驱动程序

时间:2013-09-23 01:38:18

标签: windows automation driver

我想自动安装需要测试的未签名驱动程序。 我听说如果我使用gui-auto绕过驱动程序警告提示它仍然拒绝实际使用它。

安全不是问题。自动化是(f8选项对我来说没用,虽然可能对其他人有用)。我们正在使用Ultimate / Enterprise,但其他人可能正在使用家庭版。)

似乎没有一个完整的答案,特别是对于我能找到的最近的操作系统(很多答案后面都有人声称它们不起作用)。

1 个答案:

答案 0 :(得分:2)

对于Windows 8,请使用以下hack

http://www.fotoclubinc.com/blog/how-to-disable-driver-signature-enforcement-to-allow-installation-of-windows-7-printer-drivers-on-windows-8/

http://www.howtogeek.com/167723/how-to-disable-driver-signature-verification-on-64-bit-windows-8.1-so-that-you-can-install-unsigned-drivers/

对于Windows 7,

以管理员身份打开命令提示符并键入

bcdedit -set loadoptions DISABLE_INTEGRITY_CHECKS

bcdedit -set TESTSIGNING ON

请参阅上面的安全风险警告。

如果由于某种原因它不起作用你可以用bcedit删除loadoptions并切换testigning。

bcdedit /deletevalue loadoptions

bcdedit -set TESTSIGNING OFF