HI,
Can I start another application from a driver code? The code is written in C and compiled with DDK.
HI,
Can I start another application from a driver code? The code is written in C and compiled with DDK.
I don't think so. Instead:
A service could launch an application but I don't know whether it can launch it on the user's desktop. If you want the launched application to interact with the logged-in end-user user then, instead of having a service as described above, it would be better to put the DeviceIoControl functionality in a (visible or invisible) application, which is started automatically in the user's workstation when the user logs in.
If you do this then beware assuming that there is only one logged-in user (there may be many, on a Citrix/terminal server).