Click here to Skip to main content
Licence CPOL
First Posted 12 Jul 2006
Views 11,848
Downloads 39
Bookmarked 12 times

SetServiceDescription

By | 14 Jan 2008 | Article
A method for setting the "description" of a Windows Service.

Introduction

When you create a Windows Service by deriving from System.ServiceProcess.ServiceBase, you can set various properties of the service, but not the value that gets displayed in the "Description" column of the "Computer Management" screen. This is how to set it by using the Windows API rather than mucking about in the registry.

How It's Done

The Windows API provides several methods for working with the Service Control Manager; these are documented here.

The source code included with this article does the following:

  • Calls OpenSCManager to connect to the service control manager
  • Calls OpenService to connect to the requested service
  • Calls ChangeServiceConfig2w to set the description (this is the Unicode version of the function)
  • Calls CloseServiceHandle to close the service and service control manager

Using the Code

Add the included file to your project.

In classes that derive from System.ServiceProcess.ServiceBase, add something like the following:

public void AfterInstallEventHandler
    (object sender, System.Configuration.Install.InstallEventArgs e)
{
    SetServiceDescription ( ServiceName , "This is my service" ) ;
}

In classes that derive from System.Configuration.Install.Installer, after instantiating each System.ServiceProcess.ServiceInstaller, add something like the following:

serviceInstaller.AfterInstall += new System.Configuration.Install.InstallEventHandler
    ( myservice.AfterInstallEventHandler ) ;

History

  • 2006-06-03: First posted
  • 2008-01-07: Updated

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

PIEBALDconsult

Software Developer (Senior)

United States United States

Member

BSCS 1992 Wentworth Institute of Technology
 
Originally from the Boston (MA) area. Lived in SoCal for a while. Now in the Phoenix (AZ) area.
 
OpenVMS enthusiast, ISO 8601 evangelist, photographer, opinionated SOB
 
---------------
 
"Typing is no substitute for thinking." -- R.W. Hamming
 
"I find it appalling that you can become a programmer with less training than it takes to become a plumber." -- Bjarne Stroustrup
 
ZagNut’s Law: Arrogance is inversely proportional to ability.
 
"Well blow me sideways with a plastic marionette. I've just learned something new - and if I could award you a 100 for that post I would. Way to go you keyboard lovegod you." -- Pete O'Hanlon
 
"linq'ish" sounds like "inept" in German -- Andreas Gieriet
 

"Things would be different if I ran the zoo." -- Dr. Seuss
 
"Wrong is evil, and it must be defeated." – Jeff Ello
 
"A good designer must rely on experience, on precise, logical thinking, and on pedantic exactness." -- Nigel Shaw
 

"Omit needless local variables." -- Strunk... had he taught programming
 
"DON'T BE LIBERAL IN WHAT YOU ACCEPT!"
 
"Software Engineers don't have Trophy Wives; they have Presentation Layers."
 
"We learn more from our mistakes than we do from getting it right the first time."
 
"I'm an old dog and I like old tricks."
 
"Sometimes the envelope pushes back and sometimes you get a really nasty paper cut."
 
"A method shall have one and only one return statement."
 
My first rule of debugging: "If you get a different error message, you're making progress."
 
My golden rule of database management: "Do not unto others' databases as you would not have done unto yours."
 
My general rule of software development: "Design should be top-down, but implementation should be bottom-up."
 
"Today's heresy is tomorrow's dogma."
or
"Today's dogma is yesterday's heresy."
 
"The registry is evil."
 
"Every tool is a hammer."

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
-- There are no messages in this forum --
Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 14 Jan 2008
Article Copyright 2006 by PIEBALDconsult
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid