无法加载 windows 驱动程序
Unable to load the windows driver
我试图使用 OSR Loader 在 windows 10 中加载 windows 驱动程序,HelloWorld.sys
的服务已经创建,但是当我点击开始时,它说 "This driver has been blocked from loading"
我关注的视频:https://www.youtube.com/watch?v=Nc-uh8O989I
经调查,
- 驱动程序兼容性问题 → 我尝试将目标 OS 设置为 Windows10(通用然后到桌面)
- 驱动程序签名强制执行问题 → 运行
bcdedit.exe /set nointegritychecks on
- 可能不支持 WDK → 关注了这个视频,https://www.youtube.com/watch?v=MjZVkuKQzTk&t=141s
- 签名问题 → 运行
bcdedit /set testsigning on
- 已尝试通过
sc.exe
命令进行测试 → sc create HelloWorld binpath=/my/sys/file type=kernel && sc start HelloWorld
问题是,
目标 PC:Windows10 主页 x64
内核模式驱动程序目标:Windows 10 桌面 x86
注意:内核构建架构必须与目标机器架构相匹配。
我试图使用 OSR Loader 在 windows 10 中加载 windows 驱动程序,HelloWorld.sys
的服务已经创建,但是当我点击开始时,它说 "This driver has been blocked from loading"
我关注的视频:https://www.youtube.com/watch?v=Nc-uh8O989I
经调查,
- 驱动程序兼容性问题 → 我尝试将目标 OS 设置为 Windows10(通用然后到桌面)
- 驱动程序签名强制执行问题 → 运行
bcdedit.exe /set nointegritychecks on
- 可能不支持 WDK → 关注了这个视频,https://www.youtube.com/watch?v=MjZVkuKQzTk&t=141s
- 签名问题 → 运行
bcdedit /set testsigning on
- 已尝试通过
sc.exe
命令进行测试 →sc create HelloWorld binpath=/my/sys/file type=kernel && sc start HelloWorld
问题是,
目标 PC:Windows10 主页 x64
内核模式驱动程序目标:Windows 10 桌面 x86
注意:内核构建架构必须与目标机器架构相匹配。