What is the benefit of developing the application as a windows service?

前端 未结 4 797
[愿得一人]
[愿得一人] 2021-01-03 22:31

I am going to develop an application which will process online data (comming through socket) and it does not need any user interaction.

I am thinking of a simple con

4条回答
  •  孤街浪徒
    2021-01-03 22:49

    1. You can manage a service from another machine (start/stop)
    2. As services write to the event log you can also monitor the service from another machine (although nothing stops you from doing this from a regular application)
    3. No one has to be logged on for the service to run

提交回复
热议问题