1)创建Windows service项目
二、创建处事安置措施
1)添加安置措施
之后我们可以看到上图,自动为我们创建了ProjectInstaller.cs以及2个安置的组件。
2)改削安置处事名
右键serviceInsraller1,选择属性,将ServiceName的值改为ServiceTest。
3)改削安置权限
右键serviceProcessInsraller1,选择属性,,将Account的值改为LocalSystem。
三、写入处事代码
1)打开ServiceTest代码
右键ServiceTest,选择检察代码。
2)写入Service逻辑
四、创建安置脚本(在WindowsServiceTest.exe地址的目录下创建)
在项目中添加2个文件如下(必需是ANSI或者UTF-8无BOM格局):
1)安置脚本Install.bat
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe D:\huiyishi\WindowsServiceTest\WindowsServiceTest\bin\Debug\WindowsServiceTest.exe
2)卸载脚本Uninstall.bat
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe /u D:\huiyishi\WindowsServiceTest\WindowsServiceTest\bin\Debug\WindowsServiceTest.exe