How to establish a setup project including windows service project

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I intend to establish a setup project including one or multiple windows
service project(s). The outcome package should be SELF-INSTALLABLE on a
separate Windows 2003 PC. How to do?
 
Hi,

Please refer to the ServiceInstaller class documentation in the MSDN
Library. Please also refer to documentation on custom actions in Visual
Studio .NET deployment projects. What you will need is creating a custom
action registering your service within the target system, and then invoking
this custom action from the deployment project.
 
Back
Top