Click here to Skip to main content
15,891,943 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi all.
first sorry for my bad English .
second i am new in driver programming and i want to ask about can i start exe program [user mode application ] from kernel mode and it will run in user mode ?
all i want just to do some thing from kernel mode just like that when i press double click on the exe program to start in user mode.
thanks alot.
Posted

You don't. Drivers run in the kernel and are not connected to the user session at all.
 
Share this answer
 
Drivers run the process space of the OS as such they are not connected with user mode applications the only *documented* way to communicate with user mode is through IRPS. (using read,write,create, iodevicecontrol etc.. functions)


also as i don't think you got the concept yet drivers don't have a window or buttons or any sort of GUI, (excluding display drivers but again they don't have a GUI per se)

the only thing remotely similar to a GUI is for drivers is the property pages for NDIS Drivers (Network Drivers).

PLS read the WDDK !!!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900