文章目录
- Visual Studio2022创建Windows服务程序
- 打开工具
- 创建新项目
- 创建成功
- 重命名服务
- 添加安装程序
- 编写逻辑
- 生成程序
- 安装服务
- 打开服务
- 启动服务
- 停止服务
- 卸载服务
- 修改项目配置
- 重新生成
- 安装服务
- 启动服务
Visual Studio2022创建Windows服务程序
打开工具
创建新项目
创建成功
重命名服务
修改后效果
添加安装程序
编写逻辑
using System.ServiceProcess;
using System.Timers;
using System.Windows.Forms;namespace MyAlertWindowsService
{public partial class MyFirstAlertWindowsService : ServiceBase{private System.Timers.Timer timer;public MyFirstAlertWindowsService(){InitializeComponent();}protected override void OnStart(string[] args){timer = new System.Timers.Timer();timer.Interval = 60000; // 1分钟timer.Elapsed += new ElapsedEventHandler(OnTimerElapsed);timer.Enabled = true;}private void OnTimerElapsed(object sender, ElapsedEventArgs e){MessageBox.Show("这是一个定时弹窗!");}protected override void OnStop(){timer.Enabled = false;timer.Dispose();}}
}
生成程序
安装服务
打开如下路径
C:\Windows\Microsoft.NET\Framework64\v4.0.30319
地址栏输入cmd回车
执行安装命令
installutil.exe D:\mm\vs2022\MyAlertWindowsService\bin\Debug\MyAlertWindowsService.exe
打开服务
启动服务
停止服务
卸载服务
执行卸载命令
installutil.exe /uninstall D:\mm\vs2022\MyAlertWindowsService\bin\Debug\MyAlertWindowsService.exe
修改项目配置