Starting a Service in Windows XP
Introduction
I was learning how to start a service from a program (VC++) in a Windows XP environment.
Background
Basically, my problem was putting a system tray icon through a DLL that will be run by the winmgmt service in Windows XP. I tried so many ways within my knowledge but failed. So, I tried running it as a service option. It is simple. It just uses a few functions.
Using the Code
I used the sample code available in MSDN, everything relating to starting a service put into a function called StartSampleService(). The core part starts with OpenSCManager.
The OpenSCManager function establishes a connection to the service control manager on the specified computer and opens the specified service control manager database.
SC_HANDLE OpenSCManager( LPCTSTR lpMachineName, LPCTSTR lpDatabaseName, DWORD dwDesiredAccess );
This returns a handle of type SC_HANDLE that will be used to open a service.
schService = OpenService( schSCManager, // SCM database "IconService", // service name Here I gave // my sample service, Please change this SERVICE_ALL_ACCESS); // use according to your wishes. // See that the service is not // running currently.
Then next call is to StartService(..). The results displayed through the console are done through message boxes.
Points of Interest
The interesting thing I learned is doing Console applications and still using the windows functionality such as MessageBoxes.To get this, I started my project as a Win 32 console application and in next dialog box, I selected "An Application that supports MFC." It made things simpler.
Downloads
Download demo project - 26 KbDownload source - 3 Kb

Comments
Code help
Posted by Legacy on 01/04/2004 12:00amOriginally posted by: ash
Sir i just downloaded the project and tried to run it on vc++ 6.0,it is not starting my service,please help,iam only two weeks old in vc++.
Replythanks!!!
Posted by Legacy on 07/24/2003 12:00amOriginally posted by: shaun
hi im new to VC++/MFC thanks a lot!!! helps loads
Reply
Bug when we login again the icondoesn't appear in system Tray
Posted by Legacy on 05/13/2003 12:00amOriginally posted by: Pooja
Once we start the service .The icon comes in the systemtray.
But we log off and then log in the system tray doesn't display the icon
one has to go to the scm editor to stop the service.
Is There any fix for the same ???
ReplyRegards
Pooja.
Vow!!! Nice yaar!!
Posted by Legacy on 04/15/2003 12:00amOriginally posted by: Koti Reddy
Very nice.
ReplyKeep it up!!!!!!!!(?)
10000th version of "Hello World"
Posted by Legacy on 04/14/2003 12:00amOriginally posted by: Programmer
Isn't it? Man.
Reply