Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

The "Silent Process Service"

0.00/5 (No votes)
3 May 2006 1  
Convert an application to a service without modifying any code.

Introduction

Recently, I ran into a situation where I needed to make an application launch automatically on start up. The problem was that the program that I needed to launch was designed as a WinForms application. Therefore, the only way to make it launch automatically was to make the computer automatically login and run the application. Unfortunately, the company I was working for had a strict security policy, and forcing a computer to automatically login was out of the question.

Originally, I thought about converting the entire application to an NT service. However, I was on a tight deadline, and removing the UI code would have required some extensive work and additional testing. Therefore, I needed an alternative solution. After digging around on the internet for a while, I discovered the ProcessStartInfo class. Suddenly, the light bulb turned on in my head, and I starting developing a new service which I have dubbed as the "Silent Process"...

Using the code

The code is very simple, and for the most part, self-explanatory. The service contains an OnStart and an OnStop method.

In the OnStart method, I instantiate a new ProcessStartInfo object. I then set the CreateNoWindow property to true. This way, I can run the WinForms application in the background. I also set the WindowStyle property to Hidden just as an extra precaution. The remaining properties are read from the app.config file. By modifying the configuration file, you can virtually make any application run as a service!

In the OnStop method, I check for any processes that I may have launched. If I find any matching processes, I kill them.

protected override void OnStart(string[] args){
    KillExistingProcesses();

    try {
        ProcessStartInfo startInfo = new ProcessStartInfo();
        startInfo.CreateNoWindow = true;
        startInfo.WorkingDirectory = 
          @ConfigurationSettings.AppSettings["working_directory"];
        startInfo.FileName = 
          ConfigurationSettings.AppSettings["executable_name"];
        startInfo.WindowStyle = ProcessWindowStyle.Hidden;
        Process.Start( startInfo );
    }
    catch( Exception ex ) {
        Console.WriteLine( ex.Message );
    }
}

private void KillExistingProcesses(){
    Process[] processes = Process.GetProcessesByName( 
      ConfigurationSettings.AppSettings["executable_name"].Replace(
      ".exe", String.Empty ) );
    foreach( Process process in processes ) {
        process.Kill();
    }
}

protected override void OnStop(){
    KillExistingProcesses();
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here