Running a program as a service in Windows can be incredibly useful, allowing you to ensure that critical applications are always running, even if no user is logged in. This capability is particularly valuable for server applications, background processes, and utilities that need to start automatically and run in the background.
In this guide, we will explore various methods to run any program as a service in Windows. We will use NSSM (Non-Sucking Service Manager) and learn the process step-by-step. Whether you're a system administrator looking to manage services more efficiently or a developer needing to ensure your application runs reliably, this guide will help you achieve your goal.
Set up application as service
In this section, we'll set up an application that will be managed as a service. This action will be demonstrated on Nginx web server. I'm using Nginx 1.24.0 version but the same method can be applied if you decide to use another version of it. Download Nginx for windows and follow the below process:
- Extract Nginx package and place the nginx-1.xx.x folder in "C:\" location.
- Extract NSSM package and place the nssm-2.xx folder in "C:\" location.
- Open Powershell in Administrator mode and move to "C:\nssm-2.24\win64" path. nssm.exe named file will be there in this folder, which is an executable to run NSSM application.
- To install Nginx service, use
.\nssm.exe install nginx "C:\nginx-1.24.0\nginx.exe"
command. - Start this service using
.\nssm.exe start nginx
command.
To test it, access localhost
in your web browser. You'll see Nginx welcome page which indicates that our Nginx service is running.
This service will also be visible in "services.msc" under the name of Nginx. You can use many more options with nssm tool. Use .\nssm.exe --help
to get the list of all the available options or you can simply double click the nssm.exe executable file.
Using in GUI mode
To use this application in GUI mode, run the below command:.\nssm.exe install
- Applications path is, as the name indicates, path to the application.
- Startup directory is path that is one folder above to the application. For example: If application path is "C:\nginx-1.24.0\nginx.exe" then Startup directory path should be "C:\nginx-1.24.0"
- Arguments options is additional. You can specify the arguments that are required by your application.
- Service name is to set the name of service.
You can also explore other options and tweak the service as per your requirement.
Removing service using nssm
To remove the service created using this tool, use the below command:
.\nssm.exe stop nginx
>
.\nssm.exe remove nginx
It will stop and remove Nginx service from the system. Make sure to run this command in powershell as Administrator.