---
title: "What is Windows Service in .Net?"  
description: "What is Windows Service in .Net?"  
author: "Anonymous User"  
published: 2011-07-04  
updated: 2020-09-18  
canonical: https://www.mindstick.com/interview/1079/what-is-windows-service-in-dot-net  
category: "c#"  
tags: ["c#"]  
reading_time: 2 minutes  

---

# What is Windows Service in .Net?

Microsoft Windows services, formerly known as NT services, enable you to create long-running executable applications that run in their own Windows sessions. These services can be automatically started when the computer boots, can be paused and restarted, and do not show any user interface. These features make services ideal for use on a server or whenever you need long-running functionality that does not interfere with other users who are working on the same computer. You can also run services in the security context of a specific user account that is different from the logged-on user or the default computer account.

## Answers

### Answer by Anonymous User

Microsoft Windows services, formerly known as NT services, enable you to create long-running executable applications that run in their own Windows sessions. These services can be automatically started when the computer boots, can be paused and restarted, and do not show any user interface. These features make services ideal for use on a server or whenever you need long-running functionality that does not interfere with other users who are working on the same computer. You can also run services in the security context of a specific user account that is different from the logged-on user or the default computer account.


---

Original Source: https://www.mindstick.com/interview/1079/what-is-windows-service-in-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
