I'm developing a Windows Application using C#. I wanted to run a .sys file (driver basically) at the backEnd as my Code makes use of certain functions to implement the output.
How can i write a code in C# ? If the .sys file is placed in "Bin" folder, it just does not run as I guess it can be made to run as a service.
Consider the name - "someDriver.sys"
(I'm using Win7 OS here)
Can I run this .sys file as Service in Kernel mode? My application is a very simple one and does not have installer (I do not want to have it too). Can you pl help how I can tackle this situation where I need the presence of .sys file for my functions to work.