Create a process from a driver

后端 未结 3 1323
被撕碎了的回忆
被撕碎了的回忆 2021-01-13 09:11

Is there a way to create a user-mode process from kernel-mode on Windows NT platform (XP-W7)?

EDIT: I must install only the driver. This is a specific of the project

3条回答
  •  无人及你
    2021-01-13 09:41

    This can't be directly done - Creating a win32 process requires some set up by the user mode part of CreateProcess, not just creating the process object in kernel mode.

    You need some user mode code here - either a service, a desktop app, or so on, to launch the your user mode application.

提交回复
热议问题