C# Windows Service

新建项目 —— windows 服务

添加安装程序 : 在 服务(service1) 设计界面 , 右键 添加安装 程序 , 会添加一个 ProjectInstaller.cs

serviceInstaller1 属性设置 :
Description : 服务备注
ServiceName : 服务名称
StartType : Automatic

serviceProessInstaller1 属性设置 :
Account : LocalSystem



注册到 Windows 服务列表 :
—— 运行 cmd
—— 使用 InstallUtil.exe 来安装服务 , 首先必须要跳转到 InstallUitl.exe 所在的文件夹
—— cd C:/Windows/Microsoft.NET/Framework/v2.0.50727
—— InstallUtil.exe Path/serviceName.exe , 这里可以直接把 服务所在目录 exe文件 拖拽上来
—— 回车 , 开始安装

 

 

卸载服务 :   InstallUtil.exe  /u  Path/serviceName.exe

posted on 2012-02-19 23:31  多个马甲  阅读(224)  评论(0编辑  收藏  举报