1、新建项目=======》Visualc#.windows======>windows服务====》新建完成 (服务项目名称自取)
2、打开Service1.cs======》右击添加安装程序======》=========》在查看S而vice1的代码======》
=====>编写代码即可
3、安装服务
用.net framework工具INSTALLUTIL安装服务程序即可。
用项目的输出作为参数,从命令行运行%20InstallUtil.exe。在命令行中输入下列代码: installutil%20yourPRoject.exe
Hint:%20a%20windows%20service%20must%20first%20be%20installed%20using%20installutil.exe%20and%20then%20started%20with%20the%20serviceExplorer,%20windows%20Services%20Administrative%20tool%20or%20the%20NET%20START%20command.
4、卸载服务
用项目的输出作为参数,从命令行运行%20InstallUtil.exe。
installutil%20/u%20yourproject.exe
补充
1.Service启动属性:
%20 %20 %20 %20Manual %20服务安装后,必须手动启动。
%20 %20 %20 Automatic %20每次计算机重新启动时,服务都会自动启动。
%20 %20 %20 %20Disabled %20服务无法启动。
2.新建的Service项目,其中各属性的含义(设计视图->右键属性):
Autolog%20是否自动写入系统的日志文件
CanHandlePowerEvent%20服务时候接受电源事件
CanPauseAndContinue%20服务是否接受暂停或继续运行的请求
CanShutdown%20服务是否在运行它的计算机关闭时收到通知,以便能够调用%20OnShutDown%20过程
CanStop%20服务是否接受停止运行的请求
ServiceName%20服务名
新闻热点
疑难解答