Windows Service or Scheduled Task, which one do we prefer?

后端 未结 10 1824
时光取名叫无心
时光取名叫无心 2020-12-16 12:07

If we need to write a program that works periodically, which way do we prefer? Writing a windows service or writing a console application which works as scheduled task?

10条回答
  •  旧巷少年郎
    2020-12-16 13:07

    It depends on what you mean with periodically? Each second, Each minute, each hour, each day?

    I would say the more frequent a task is to be running, the more a Windows Service is preferred.

提交回复
热议问题