Click here to Skip to main content
15,888,984 members
Articles / Programming Languages / C#
Article

The "Silent Process Service"

Rate me:
Please Sign up or sign in to vote.
4.29/5 (17 votes)
3 May 20061 min read 77.8K   686   73   15
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.

C#
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


Written By
Software Developer (Senior) Concepts2Code
United States United States
Michael is the co-founder and master consultant for Concepts2Code, a software consulting company based in Buffalo, New York. He's been programming since the early 1990's. His vast programming experience includes VB, Delphi, C#, ASP, ASP.NET, Ruby on Rails, Coldfusion and PHP. Michael also is a Microsoft Certified Application Developer and a Certified Technology Specialist for SQL Server.

Visit his blog.

Comments and Discussions

 
GeneralGood Pin
loyal ginger5-Nov-09 6:30
loyal ginger5-Nov-09 6:30 
GeneralMy vote of 1 Pin
Paresh Gheewala1-Dec-08 20:13
Paresh Gheewala1-Dec-08 20:13 
GeneralWindows Server 2003 Pin
longg20-Sep-07 8:46
longg20-Sep-07 8:46 
I have attempted to setup the SilentProcess service on Windows Server 2003 with mixed results. The service installs and starts, but the application never runs. Has anyone tried or had success in this environment? In my case 2003 server is installed on 32 bit hardware.
GeneralRe: Windows Server 2003 Pin
Michael Ceranski20-Sep-07 9:58
Michael Ceranski20-Sep-07 9:58 
GeneralGUI applications should not be services Pin
palmer_tr16-May-06 16:09
palmer_tr16-May-06 16:09 
GeneralRe: GUI applications should not be services Pin
Michael Ceranski17-May-06 2:16
Michael Ceranski17-May-06 2:16 
GeneralRe: GUI applications should not be services Pin
chefZ10-Jun-07 17:57
chefZ10-Jun-07 17:57 
GeneralApplication doesn't display Pin
jmlfdcguy11-May-06 3:00
jmlfdcguy11-May-06 3:00 
GeneralRe: Application doesn't display Pin
Michael Ceranski17-May-06 2:19
Michael Ceranski17-May-06 2:19 
GeneralRe: Application doesn't display Pin
bytebugs28-Jun-06 23:21
bytebugs28-Jun-06 23:21 
QuestionKill? Pin
windrago9-May-06 6:38
windrago9-May-06 6:38 
AnswerRe: Kill? Pin
Michael Ceranski17-May-06 2:22
Michael Ceranski17-May-06 2:22 
GeneralRe: Kill? Pin
P@trickP15-Oct-07 21:58
P@trickP15-Oct-07 21:58 
QuestionWhat about GUI interface? Pin
varnk9-May-06 2:46
varnk9-May-06 2:46 
GeneralWorkarounds... Pin
Fabrice Vergnenegre3-May-06 11:22
Fabrice Vergnenegre3-May-06 11:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.