This project is based on the original one at A basic Windows service in C++ (CppWindowsService) published by Microsoft Archive.
- Visual Studio 2022
- MS-LPL
- Windows SDK
- Windows Service
- 15/10/2024
This code sample demonstrates creating a very basic Windows Service application in Visual C++. The example Windows Service logs the service start and stop information to the Application event log, and shows how to run the main function of the service in a thread pool worker thread. You can easily extend the Windows Service skeleton to meet your own business requirement.
The following steps walk through a demonstration of the Windows Service sample.
- Step 1. After you successfully build the sample project in Visual Studio 2022, you will get a service application: CppWindowsService.exe.
- Step 2. Run a command prompt as administrator, navigate to the output folder of the sample project, and enter the following command to install the service.
CppWindowsService.exe -installThe service is successfully installed if the process outputs:
If you do not see this output, please look for error codes in the output, and investigate the cause of failure. For example, the error code 0x431 means that the service already exists, and you need to uninstall it first.
- Step 3. Open Service Management Console (
services.msc). You should be able to findCppWindowsService Sample Servicein the service list.
- Step 4. Right-click the
CppWindowsServiceservice in Service Management Console and select Start to start the service. Open Event Viewer, and navigate toWindows Logs >> Application. You should be able to see this event fromCppWindowsServicewith the information:
- Step 5. Right-click the service in Service Management Console and select Stop to stop the service. You will see this new event from
CppWindowsServiceinEvent Viewer >> Windows Logs >> Applicationwith the information:
- Step 6. To uninstall the service, enter the following command in the command prompt running as administrator.
CppWindowsService.exe -removeIf the service is successfully removed, you would see this output:
- Step 1. In Visual Studio 2022, add a new
Visual C++ >> Win32 >> Win32 Console Applicationproject namedCppWindowsService. Unselect thePrecompiled headeroption in Application Settings of the Win32 Application Wizard, and deletestdafx.h,stdafx.cpp,targetver.hfiles after the project is created. - Step 2. Define the settings of the service in
CppWindowsService.cpp.
// Internal name of the service
#define SERVICE_NAME L"CppWindowsService"
// Displayed name of the service
#define SERVICE_DISPLAY_NAME L"CppWindowsService Sample Service"
// Service start options.
#define SERVICE_START_TYPE SERVICE_DEMAND_START
// List of service dependencies - "dep1\0dep2\0\0"
#define SERVICE_DEPENDENCIES L""
// The name of the account under which the service should run
#define SERVICE_ACCOUNT L"NT AUTHORITY\\LocalService"
// The password to the service account name
#define SERVICE_PASSWORD NULL
⚠️ Security Note: In this code sample, the service is configured to run asLocalService, instead ofLocalSystem. TheLocalSystemaccount has broad permissions. Use theLocalSystemaccount with caution, because it might increase your risk of attacks from malicious software. For tasks that do not need broad permissions, consider using the LocalService account, which acts as a non-privileged user on the local computer and presents anonymous credentials to any remote server.
- Step 3. Replace the application's entry point (main) in
CppWindowsService.cppwith the code below. According to the arguments in the command line, the function installs or uninstalls or starts the service by calling into different routines that will be declared and implemented in the next steps.
int wmain(int argc, wchar_t *argv[])
{
if ((argc > 1) && ((*argv[1] == L'-' || (*argv[1] == L'/'))))
{
if (_wcsicmp(L"install", argv[1] + 1) == 0)
{
// Install the service when the command is
// "-install" or "/install".
InstallService(
SERVICE_NAME, // Name of service
SERVICE_DISPLAY_NAME, // Name to display
SERVICE_START_TYPE, // Service start type
SERVICE_DEPENDENCIES, // Dependencies
SERVICE_ACCOUNT, // Service running account
SERVICE_PASSWORD // Password of the account
);
}
else if (_wcsicmp(L"remove", argv[1] + 1) == 0)
{
// Uninstall the service when the command is
// "-remove" or "/remove".
UninstallService(SERVICE_NAME);
}
}
else
{
wprintf(L"Parameters:\n");
wprintf(L" -install to install the service.\n");
wprintf(L" -remove to remove the service.\n");
CSampleService service(SERVICE_NAME);
if (!CServiceBase::Run(service))
{
wprintf(L"Service failed to run w/err 0x%08lx\n", GetLastError());
}
}
return 0;
}- Step 4. Add the
ServiceBase.handServiceBase.cppfiles to provide a base class for a service that will exist as part of a service application. The class is namedCServiceBase. It must be derived from when creating a new service class. The service base class has these public functions:
// It register the executable for a service with SCM.
static BOOL CServiceBase::Run(CServiceBase &service)
// This is the constructor of the service class. The optional parameters
// (fCanStop, fCanShutdown and fCanPauseContinue) allow you to specify
// whether the service can be stopped, paused and continued, or be
// notified when system shutdown occurs.
CServiceBase::CServiceBase(PWSTR pszServiceName,
BOOL fCanStop = TRUE,
BOOL fCanShutdown = TRUE,
BOOL fCanPauseContinue = FALSE)
// This is the virtual destructor of the service class.
virtual ~CServiceBase::CServiceBase(void);
// Funtion that stops the service.
void CServiceBase::Stop();The class also provides these virtual member functions. You can implement them in a derived class. The functions execute when the service starts, stops, pauses, resumes, and when the system is shutting down.
virtual void OnStart(DWORD dwArgc, PWSTR *pszArgv);
virtual void OnStop();
virtual void OnPause();
virtual void OnContinue();
virtual void OnShutdown();- Step 5. Add the
SampleService.handSampleService.cppfiles to provide a sample service class that derives from the service base class -CServiceBase. The sample service logs the service start and stop information to the Application log, and shows how to run the main function of the service in a thread pool worker thread.
CSampleService::OnStart, which is executed when the service starts, calls CServiceBase::WriteEventLogEntry to log the service-start information. And it calls CThreadPool::QueueUserWorkItem to queue the main service function (CSampleService::ServiceWorkerThread)
for execution in a worker thread.
⚠️ NOTE: A service application is designed to be long running. Therefore, it usually polls or monitors something in the system. The monitoring is set up in theOnStartmethod. However,OnStartdoes not actually do the monitoring. TheOnStartmethod must return to the operating system after the service's operation has begun. It must not loop forever or block. To set up a simple monitoring mechanism, one general solution is to create a timer inOnStart. The timer would then raise events in your code periodically, at which time your service could do its monitoring. The other solution is to spawn a new thread to perform the main service functions, which is demonstrated in this code sample.
void CSampleService::OnStart(DWORD dwArgc, LPWSTR *lpszArgv)
{
// Log a service start message to the Application log.
WriteEventLogEntry(L"CppWindowsService in OnStart",
EVENTLOG_INFORMATION_TYPE);
// Queue the main service function for execution in a worker thread.
CThreadPool::QueueUserWorkItem(&CSampleService::ServiceWorkerThread, this);
}CSampleService::OnStop, which is executed when the service stops, calls CServiceBase::WriteEventLogEntry to log the service-stop information. Next, it sets the member variable m_fStopping as TRUE to indicate that the service is stopping and waits for the finish
of the main service function that is signaled by the m_hStoppedEvent event object.
void CSampleService::OnStop()
{
WriteEventLogEntry(L"CppWindowsService in OnStop",
EVENTLOG_INFORMATION_TYPE);
// Indicate that the service is stopping and wait for the finish of the
// main service function (ServiceWorkerThread).
m_fStopping = TRUE;
if (WaitForSingleObject(m_hStoppedEvent, INFINITE) != WAIT_OBJECT_0)
{
throw GetLastError();
}
}CSampleService::ServiceWorkerThread runs in a thread pool worker thread. It performs the main function of the service such as the communication with client applications through a named pipe. In order that the main function finishes gracefully when the service is about to stop, it should periodically check the m_fStopping variable. When the function detects that the service is stopping, it cleans up the work and signal the m_hStoppedEvent event object.
void CSampleService::ServiceWorkerThread(void)
{
// Periodically check if the service is stopping.
while (!m_fStopping)
{
// Perform main service function here...
::Sleep(2000); // Simulate some lengthy operations.
}
// Signal the stopped event.
SetEvent(m_hStoppedEvent);
}InstallService Installs the service
UninstallService Uninstalls the service



