Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating an MSI installer for a Windows Service

Tags:

I have a Windows Service project in Visual Studio 2008. I've also added the setup and deployment project. Unfortunately, when I install it, the service does not show up in the services MMC snapin.

I have already added the ProjectInstaller to the service project, and I've followed the instructions here already.

like image 297
Joel Martinez Avatar asked May 04 '09 16:05

Joel Martinez


1 Answers

What you're looking for (and that article has nothing on this, that I can see) is a ProjectInstaller class. If you open your service up in design view, you can right-click and select "Add Installer." This adds a class to your project called, by default (I think), ProjectInstaller.cs. In design view, you will see two items with the default names ServiceProcessInstaller1 and ServiceInstaller1. Change the properties on each for what account you want your service to run under, what the service name is, description, etc.

Then, in your MSI project, click on the Custom Actions Editor icon and add the "Primary output from YourServiceProject" to all of the actions, Install, Commit, Rollback, and Uninstall.

Here's an older walk-through from Microsoft.

Best of luck.

like image 153
AJ. Avatar answered Sep 24 '22 15:09

AJ.