Create Windows Service in Visual Studio [C#]

This example shows step-by-step how to create a windows service in Visual Studio 2005.

Create new project and select windows service (Visual C# / Windows / Windows Service). Enter the project name, e.g. „MyService“.

View designer of the Service1.cs and click to Add Installer in the Properties window.

It adds a ProjectInstaller­.cs file to the project. This file contains two components, a ServiceInsta­ller and a ServiceProces­sInstaller.

Click to serviceInstaller1, and in the Properties window, set ServiceName to „MyService“, change DisplayName (shown in Microsoft Management Console) and fill in the Description field. You can also set StartType to automatic or manual service starting.

Click to serviceProces­sInstaller1 and change the Account property to a value you need. It’s an account under which the system runs the service. Account descriptions can be found in ServiceAccount enumeration.

Complete the implementation of OnStart and OnStop methods in the service class.

Post a Comment

Please do not post any spam link in the comment box😊

Previous Post Next Post

Blog ads

CodeGuru