Run any program as service in windows

article-featured-image

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. listing files in nssm folder
  • To install Nginx service, use .\nssm.exe install nginx "C:\nginx-1.24.0\nginx.exe" command. installing nginx service using nssm
  • Start this service using .\nssm.exe start nginx command. starting nginx service in windows 10

To test it, access localhost in your web browser. You'll see Nginx welcome page which indicates that our Nginx service is running. testing nginx server

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
using nssm in GUI
  • 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.

Custom service in windows
shellscribe-admin

Author: Harpreet Singh

Created: Tue 19 Mar 2024

Updated: 1 year, 3 months ago

Suggested Posts:
PROGRAMMING post image
Python Tool to Download YouTube Video in 4K HD

This article is about my YouTube Downloader tool which is written in Python. It …

LINUX post image
Configure Firewalld in Linux

Firewalld is a powerful dynamic firewall management tool whose sole purpose is to manage firewall …

LINUX post image
Understand SELinux module and manage security policies in Linux

This article is all about SELinux. It's a security component that protects Linux systems from …

LINUX post image
Install Wordpress on LAMP Stack (Ubuntu)

According to a survey done by W3Techs, Wordpress is used by 41% of all …

CLOUD post image
Create IAM user policy for single S3 bucket access

Are you looking to grant specific access to an AWS S3 bucket for an IAM …

Sign up or Login to post comment.

Comments (0)