I have a C++ Windows service, and I would like to access an executable in the same directory as the service’s executable (via the system function). I’d imagine to do this I’ll need to find that directory, so that I can refer to the target executable’s path. How can I find the directory in which the service is installed, in code?
Share
You can use the GetModuleFileName function. See the Installing a Service example.