且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

有关如何将驱动程序加载到Vista或Win7的问题

更新时间:2023-10-24 23:05:10

您无法在Vista后操作系统中加载驱动程序,如果未签名,则Windows会阻止它.

唯一的两种方法是:

1.在测试模式下启动操作系统.
2.使用WinDbg.

(注意:我不确定这些替代方法是否适用于64位版本的VISTA或Windows 7)


要以测试模式启动操作系统,请以管理员身份启动CMD实例并执行以下命令:

bcdedit.exe -set loadoptions DDISABLE_INTEGRITY_CHECKS
bcdedit.exe -set TESTSIGNING ON

要禁用测试模式,请执行以下命令:

bcdedit.exe -set loadoptions EENABLE_INTEGRITY_CHECKS
bcdedit.exe -set TESTSIGNING OFF

(注意:如果禁用测试模式,由于未签名,驱动程序将无法运行)

D,库尔特.
you cannot load the driver in post vista Operating systems if it isn''t signed windows will block it.

The only two ways to do this are:

1. Start the OS In test mode.
2. Use WinDbg.

(NOTE: I AM NOT SURE IF THESE WORKAROUNDS WORK WITH 64 bit versions of VISTA or Windows 7)


To start the OS in test mode start a CMD instance as an administrator and execute the following commands:

bcdedit.exe -set loadoptions DDISABLE_INTEGRITY_CHECKS
bcdedit.exe -set TESTSIGNING ON

To disable Test Mode execute the following commands:

bcdedit.exe -set loadoptions EENABLE_INTEGRITY_CHECKS
bcdedit.exe -set TESTSIGNING OFF

(NOTE: if you disable test mode your driver wont run since it isn''t signed)

D, Kurt.