Writing a Windows Service with a Cancellation Feature

Summary I’ve blogged about how to write a windows service before (click here). In my previous blog post I did not deep-dive into how to handle a cancel request issued by someone who is clicking on the stop button. In this article, I’m going to expand on the previous article and show how to setup … Read moreWriting a Windows Service with a Cancellation Feature

Creating a Windows Service Application

Summary In this post, I’m going to show you the easiest way to get a service application up and running. Windows Services can be used to perform background tasks while your computer or server continues to perform normal tasks. Services can also run while a computer is logged out. Getting Started The first thing I … Read moreCreating a Windows Service Application