devxlogo

Adding an Installer Class to a Windows Service

Adding an Installer Class to a Windows Service

Visual Studio makes it simple to add an installer class to your Windows service. Here are the steps:

  1. Open the “Solution Explorer” (press Ctrl-Alt-L, or go to the “View” menu and select Solution Explorer).
  2. Right-click on the appropriate code type for your service (e.g. “*.vb”) and choose “View Designer.” For Windows services, there will not be any forms in the designer.
  3. Right-click on the grey area, and choose “Add Installer.”
  4. VS will add a new installer class to your project named (for VB applications) “ProjectInstaller.vb,” as well as “ServiceInstaller1” and “ServiceProcessInstaller1” files.
  5. Change the property values appropriately to suit your needs. For example, set the Start Account to LocalService to start the service under the LocalService account (in ServiceProcessInstaller1).
  6. Change the ServiceName property to match your service’s name, set the StartType to Automatic or Manual, and enter an appropriate Description (in ServiceInstaller1).

That’s it. Save your changes, and you’re done.

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist