Windows System Software -- Consulting, Training, Development -- Unique Expertise, Guaranteed Results
The free OSR Learning Library has more than 50 articles on a wide variety of topics about writing and debugging device drivers and Minifilters. From introductory level to advanced. All the articles have been recently reviewed and updated, and are written using the clear and definitive style you've come to expect from OSR over the years.
Check out The OSR Learning Library at: https://www.osr.com/osr-learning-library/
I want to call a application from kernel space.
how to do this ?
Upcoming OSR Seminars | ||
---|---|---|
OSR has suspended in-person seminars due to the Covid-19 outbreak. But, don't miss your training! Attend via the internet instead! | ||
Internals & Software Drivers | 7 February 2022 | Live, Online |
Kernel Debugging | 21 March 2022 | Live, Online |
Developing Minifilters | 23 May 2022 | Live, Online |
Writing WDF Drivers | 12 September 2022 | Live, Online |
Comments
You do not do so. That's simply not how the system works. You can have a user-mode helper service that communicates with your driver, and exchanges commands, but the service will do the app stuff.
Tim Roberts, [email protected]
Providenza & Boekelheide, Inc.
> I want to call a application from kernel space.
>
> how to do this ?
Maybe you're looking for this: https://github.com/OSRDrivers/Inverted
Hmm, now I'm embarrassed that I interpreted his question as "I want to LAUNCH an application", and did not even consider the more likely interpretation "I want to COMMUNICATE with an application". Take 10 points from Gryffindor.
Tim Roberts, [email protected]
Providenza & Boekelheide, Inc.
What’s really funny is that I didn’t remember that this code is on GitHub. And I wrote it.
Peter
Peter Viscarola
OSR
@OSRDrivers