96 out of 132 rated this helpful Rate this topic

Walkthrough: Creating a Windows Service Application in the Component Designer 

NoteNote

The Windows Service template and associated functionality is not available in the Standard Edition of Visual Studio. For more information, see Visual Studio Editions.

The procedures in this topic walk you through the process of creating a simple Windows Service application that writes messages to an event log. The basic steps that you perform to create and use your service include:

  • Create a project using the Windows Service application template. This template creates a class for you that inherits from ServiceBase and writes much of the basic service code, such as the code to start the service.

  • Write the code for the OnStart and OnStop procedures, and override any other methods that you want to redefine.

  • Add the necessary installers for your service application. By default, a class containing two or more installers is added to your application when you click the Add Installer link: one to install the process, and one for each of the associated services your project contains.

  • Build your project.

  • Create a setup project to install your service, and then install it.

  • Access the Windows 2000 Services Control Manager and start your service.

To begin, you create the project and set values that are necessary for the service to function correctly.

To create and configure your service

  1. On the File menu, click New Project.

    The New Project dialog box opens.

  2. Select the Windows Service project from the list of Visual Basic, Visual C#, Visual C++, or Visual J# project templates, and name it MyNewService. Click OK.

    NoteNote

    The project template automatically adds a component class called Service1 that inherits from System.ServiceProcess.ServiceBase.

  3. Click the designer to select Service1. Then, in the Properties window, set the ServiceName and the (Name) property for Service1 to MyNewService.

  4. Set the AutoLog property to true.

  5. On the View menu, click Code to open the Code Editor. Edit the Main method to create an instance of MyNewService. When you renamed the service in step 3, the class name was not modified in the Main method. In Visual C# and Visual J# applications, the Main method is located in the Program.cs and Program.js files, respectively.

    static void Main()
    {
        System.ServiceProcess.ServiceBase[] ServicesToRun;
        // Change the following line to match.
        ServicesToRun = new System.ServiceProcess.ServiceBase[] 
          { new MyNewService() };
        System.ServiceProcess.ServiceBase.Run(ServicesToRun);
    }
    
    
    public static void main(String[] args)
    {
        System.ServiceProcess.ServiceBase[] ServicesToRun;
        ServicesToRun = new System.ServiceProcess.ServiceBase[] 
          { new MyNewService() };
        System.ServiceProcess.ServiceBase.Run(ServicesToRun);
    }
    
    

In the next section, you add a custom event log to your Windows service. Event logs are not associated in any way with Windows services. Here the EventLog component is used as an example of the type of component you could add to a Windows service. For more information on custom event logs, see How to: Create and Remove Custom Event Logs.

To add custom event log functionality to your service

  1. In Solution Explorer, right-click Service1.vb, Service1.cs, or Service1.jsl and select View Designer.

  2. From the Components tab of the Toolbox, drag an EventLog component to the designer.

  3. In Solution Explorer, right-click Service1.vb, Service1.cs, or Service1.jsl and select View Code.

  4. Edit the constructor to define a custom event log.

    public MyNewService()
    {
        InitializeComponent();
        if (!System.Diagnostics.EventLog.SourceExists("MySource")) 
        {         
                System.Diagnostics.EventLog.CreateEventSource(
                    "MySource","MyNewLog");
        }
        eventLog1.Source = "MySource";
        eventLog1.Log = "MyNewLog";
    }
    
    
    public MyNewService()
    {
        InitializeComponent();
        if (!System.Diagnostics.EventLog.SourceExists("MySource"))
        {
            System.Diagnostics.EventLog.CreateEventSource(
                    "MySource", "MyNewLog");
        }
        eventLog1.set_Source("MySource");
        eventLog1.set_Log("MyNewLog");
    }
    
    

To define what happens when the service starts

  • In the Code Editor, locate the OnStart method that was automatically overridden when you created the project, and write code to determine what occurs when the service begins running:

    protected override void OnStart(string[] args)
    {
        eventLog1.WriteEntry("In OnStart");
    }
    
    
    protected void OnStart(String[] args)
    {
        eventLog1.WriteEntry("In OnStart");
    }
    
    
    NoteNote

    A service application is designed to be long running. As such, it usually polls or monitors something in the system. The monitoring is set up in the OnStart method. However, OnStart does not actually do the monitoring. The OnStart method must return to the operating system once the service's operation has begun. It must not loop forever or block. To set up a simple polling mechanism, you can use the System.Timers.Timer component. In the OnStart method, you would set parameters on the component, and then you would set the Enabled property to true. The timer would then raise events in your code periodically, at which time your service could do its monitoring.

To define what happens when the service is stopped

  • In the Code Editor, select the OnStop procedure from the Method Name drop-down list, which was automatically overridden when you created the project. Write code to determine what occurs when the service is stopped:

    protected override void OnStop()
    {
        eventLog1.WriteEntry("In onStop.");
    }
    
    
    protected void OnStop()
    {
        eventLog1.WriteEntry("In onStop.");
    }
    
    

You can also override the OnPause, OnContinue, and OnShutdown methods to define further processing for your component.

To define other actions for the service

  • For the method you want to handle, override the appropriate method and define what you want to occur.

    The following code shows what it looks like if you override the OnContinue method:

    protected override void OnContinue()
    {
        eventLog1.WriteEntry("In OnContinue.");
    }  
    
    
    protected void OnContinue()
    {
        eventLog1.WriteEntry("In OnContinue.");
    }
    
    

Some custom actions need to occur when installing a Windows service, which can be done by the Installer class. Visual Studio can create these installers specifically for a Windows service and add them to your project.

To create the installers for your service

  1. In Solution Explorer, right-click Service1.vb, Service1.cs, or Service1.jsl and select View Designer.

  2. Click the background of the designer to select the service itself, rather than any of its contents.

  3. With the designer in focus, right-click, and then click Add Installer.

    By default, a component class containing two installers is added to your project. The component is named ProjectInstaller, and the installers it contains are the installer for your service and the installer for the service's associated process.

  4. In Design view for ProjectInstaller, click ServiceInstaller1 or serviceInstaller1.

  5. In the Properties window, set the ServiceName property to MyNewService.

  6. Set the StartType property to Automatic.

  7. In the designer, click ServiceProcessInstaller1 (for a Visual Basic project), or serviceProcessInstaller1 (for a Visual C# or Visual J# project). Set the Account property to LocalService. This will cause the service to be installed and to run on a local service account.

    Security noteSecurity Note

    The LocalService account acts as a non-privileged user on the local computer, and presents anonymous credentials to any remote server. Use the other accounts with caution, as they run with higher privileges and increase your risk of attacks from malicious code.

To build your service project

  1. In Solution Explorer, right-click to select your project and select Properties from the shortcut menu. The project's Property Designer appears.

  2. on the Application page, from the Startup object list, choose MyNewService.

  3. Press CTRL+SHIFT+B to build the project.

Now that the project is built, it can be deployed. A setup project will install the compiled project files and run the installers needed to run the Windows service. To create a complete setup project you will need to add the project output, MyNewService.exe, to the setup project and then add a custom action to have MyNewService.exe installed. For more information on setup projects, see Setup Projects. For more information on custom actions, see Walkthrough: Creating a Custom Action.

To create a setup project for your service

  1. In Solution Explorer, right-click to select your solution, point to Add, and then click New Project.

  2. In the Project Types pane, select the Setup and Deployment Projects folder.

  3. In the Templates pane, select Setup Project. Name the project MyServiceSetup. Click OK.

    A setup project is added to the solution.

Next you will add the output from the Windows service project, MyNewService.exe, to the setup.

To add MyNewService.exe to the setup project

  1. In Solution Explorer, right-click MyServiceSetup, point to Add, then choose Project Output.

    The Add Project Output Group dialog box appears.

  2. MyNewService is selected in the Project box.

  3. From the list box, select Primary Output, and click OK.

    A project item for the primary output of MyNewService is added to the setup project.

Now add a custom action to install the MyNewService.exe file.

To add a custom action to the setup project

  1. In Solution Explorer, right-click the setup project, point to View, and then click Custom Actions.

    The Custom Actions editor appears.

  2. In the Custom Actions editor, right-click the Custom Actions node and choose Add Custom Action.

    The Select Item in Project dialog box appears.

  3. Double-click the Application Folder in the list box to open it, select Primary Output from MyNewService (Active), and click OK.

    The primary output is added to all four nodes of the custom actions — Install, Commit, Rollback, and Uninstall.

  4. In Solution Explorer, right-click the MyServiceSetup project and click Build.

To install the Windows Service

  1. To install MyNewService.exe, right-click the setup project in Solution Explorer and select Install.

  2. Follow the steps in the Setup Wizard. Build and save your solution.

To start and stop your service

  1. Open the Services Control Manager by doing one of the following:

    • In Windows XP and 2000 Professional, right-click My Computer on the desktop, then click Manage. In the Computer Management console, expand the Services and Applications node.

      - or -

    • In Windows Server 2003 and Windows 2000 Server, click Start, point to Programs, click Administrative Tools, and then click Services.

      NoteNote

      In Windows NT version 4.0, you can open this dialog box from Control Panel.

    You should now see MyNewService listed in the Services section of the window.

  2. Select your service in the list, right-click it, and then click Start.

  3. Right-click the service, and then click Stop.

To verify the event log output of your service

  1. Open Server Explorer and access the Event Logs node. For more information, see How to: Work with Event Logs in Server Explorer.

    NoteNote

    The Windows Service template and associated functionality is not available in the Standard Edition of Visual Studio. For more information, see Visual Studio Editions.

  2. Locate the listing for MyNewLog and expand it. You should see entries for the actions your service has performed.

To uninstall your service

  1. On the Start menu, open Control Panel and click Add/Remove Programs, and then locate your service and click Uninstall.

  2. You can also uninstall the program by right-clicking the program icon for the .msi file and selecting Uninstall.

    NoteNote

    If you installed the service on Windows 2000, you will need to reboot the system before you can reinstall the service. In Windows 2000, services are not completely deleted until the system is rebooted.

You might explore the use of a ServiceController component to allow you to send commands to the service you have installed. For more information on using the ServiceController component, see Monitoring Windows Services.

You can use an installer to create an event log when the application is installed, rather than creating the event log when the application runs. Additionally, the event log will be deleted by the installer when the application is uninstalled. For more information, see Walkthrough: Installing an Event Log Component.

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Timers
This works fine.


Imports System.Timers

Private Shared _PollTimer As System.Timers.Timer

Protected Overrides Sub OnStart(ByVal args() As String)

            '// Startup data poll timer
            _PollTimer = New System.Timers.Timer(_dbPollFreq)
            AddHandler _PollTimer.Elapsed, AddressOf GetSomeData
            _PollTimer.Enabled = True
Windows Services: Timers

To save you a bunch of time with timer code in windows services... You cannot use system.timers.timer or system.windows.forms.timer in a windows service... although it compiles they simply do not work.  You have to use system.threading.timer

http://broncosolutions.ca/COMMUNITY/blogs/andrew_renner/archive/2006/03/03/51.aspx

  
 HUH?
System.Timers.Timer works fine for me:  Windows 2003

I find that I need to enable the timer to make it fire events.

eg.

System.Timers.Timer myTimer = new System.Timers.Timer();

myTimer.enabled = true;

Windows Service Deployment
All,

I created a Windows Service and installed it on Development Server. To move to production, should i have to copy the code or just move the assembly/exe?. In the project i created in Developement there are configuration files for connectivity to Db.


Regards
Janet

StevenPo (MSFT) replied: Janet - you can perform the deployment in multiple ways. You should not need to deploy the source code, but you might need to write a simple installer. For more information, you could search for "Deploy Windows Service" or post in one of the MSDN forums for more information.
How to make that the installer create a folder on the start bar?
Hello, I have make this example, and all works but the installer dont create the folder in the windows programm menu ... .. how can I install the applicacion and registrate it on the programm menu of the user?

thanks
Service Installatin Problems
You MUST install the custom actions with the primary output in the start, stop, continue and pause or else the service will not properly install. 

Symptoms:
Installing properly, being visible in the add/remove programs and not being visible in the services. 


Re: EventLog
amason: It's a security error, you should implement these two lines:
if (!System.Diagnostics.EventLog.SourceExists("MySource")) {
System.Diagnostics.EventLog.CreateEventSource("MySource","MyNewLog");
}
in the process installer Main code instead, as this only has to run once and the process installer runs with a higher priviledge and thus the security error is not returned.



EventLog

In my implementation the Service won't start due to there being a problem in service trying to check if eventLog exists in MyNewService constructor:
See line "if (!EventLog.SourceExists("MySource"))".

Check the Visual Studio 2010 version of the topic for updated content: http://msdn.microsoft.com/en-us/library/zt39148a.aspx

Can't start the service
If you try to start the service manually it can't be started because the account programed is LocalService and the privileges are not corrects.
Windows Services: Timers
You can in fact use system.timers.timer, but you need to ensure that you evoke the Start() method on the timer, if using system.threading.timer you do not need to explicitly start the timer.