Related questions
How to Debug a Windows Service
I have create a windows service using the Code Project Article. I am able to install the service and delete the service using -i and -d switch.
I am able to see the service in services.msc but when I …
How can a Windows service execute a GUI application?
I have written a Windows service that allows me to remotely run and stop applications. These applications are run using CreateProcess, and this works for me because most of them only perform backend processing. Recently, I need to run applications …
How do you debug a Windows Service?
I read the MSDN article on the topic. To quote:
Because a service must be run from
within the context of the Services
Control Manager rather than from
within Visual Studio, debugging a
service is not as straightforward as
debugging …