Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 C# 程序需要查询数据库表并在轮询间隔上调用 web 服务。
我知道我可以将其包装为 Windows 服务。但是我想知道是否有任何其他工具和技术可以让我按计划调用我的 exe 而无需创建服务。
您可以使用计划任务 ( taskschd.msc) 来安排程序运行,这基本上是 Windows 版本的cron.
taskschd.msc
cron
您还可以让您的程序在启动时运行并坐在托盘中,等待自己的计时器到期时睡觉。