views:

116

answers:

1

The express editions of Visual C++ lack a template for creating Windows services. However, I heard somewhere that it could still be done. How would I go about doing this?

+1  A: 

It is just a C/C++ program that uses the Service Control Manager API. Start by looking at OpenSCManager and CreateService and go from there.

janm