Click here to Skip to main content
Licence 
First Posted 3 May 2006
Views 57,068
Bookmarked 72 times

The "Silent Process Service"

By | 3 May 2006 | Article
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

About the Author

Michael Ceranski

Software Developer (Senior)
Concepts2Code
United States United States

Member

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.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralGood Pinmemberloyal ginger6:30 5 Nov '09  
GeneralMy vote of 1 PinmemberParesh Gheewala20:13 1 Dec '08  
GeneralWindows Server 2003 Pinmemberlongg8:46 20 Sep '07  
GeneralRe: Windows Server 2003 PinmemberMichael Ceranski9:58 20 Sep '07  
GeneralGUI applications should not be services Pinmemberpalmer_tr16:09 16 May '06  
GeneralRe: GUI applications should not be services PinmemberMichael Ceranski2:16 17 May '06  
GeneralRe: GUI applications should not be services PinmemberchefZ17:57 10 Jun '07  
GeneralApplication doesn't display Pinmemberjmlfdcguy3:00 11 May '06  
GeneralRe: Application doesn't display PinmemberMichael Ceranski2:19 17 May '06  
GeneralRe: Application doesn't display Pinmemberbytebugs23:21 28 Jun '06  
QuestionKill? Pinmemberwindrago6:38 9 May '06  
AnswerRe: Kill? PinmemberMichael Ceranski2:22 17 May '06  
GeneralRe: Kill? PinmemberP@trickP21:58 15 Oct '07  
QuestionWhat about GUI interface? Pinmembervarnk2:46 9 May '06  
GeneralWorkarounds... PinmemberFabrice Vergnenegre11:22 3 May '06  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 3 May 2006
Article Copyright 2006 by Michael Ceranski
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid