|
I've got a windows service project, written in C++. I'd like to add it as part of a .msi setup / installer project. I can install it okay, but I'd like to also register the service with target machine, so that it appears in the windows service control manager applet (available from control panel -> administration -> services) I can do this with the command sc.exe create myservice binpath=c:\myservice.exe How can I add this to the installer project?
|