vs2012创建Windows服务

一、创建一个Windows Service

1、创建Windows Service项目

vs2012创建Windows服务_第1张图片

创建好了如下图,

vs2012创建Windows服务_第2张图片

 

二、创建服务安装程序

打开Service1.cs

vs2012创建Windows服务_第3张图片

右键,点击安装程序

选定“serviceProcessInstaller1”,设置Account属性值为“LocalSystem”,LocalSystem是服务中的最高权限,其它权限相对低一些,相关内容可以查询资料;

vs2012创建Windows服务_第4张图片

右键serviceInsraller1,选择属性,修改服务名和说明

vs2012创建Windows服务_第5张图片

三、安装

生成后,打开vs2012创建Windows服务_第6张图片

输入InstallUtil.exe C:\Users\xxxxx\Desktop\WindowsService1\WindowsService1\bin\Debug\WindowsService1.exe

 

卸载installutil /u C:\Users\xxxxx\Desktop\WindowsService1\WindowsService1\bin\Debug\WindowsService1.exe

 

转载于:https://www.cnblogs.com/fanyun/p/4329440.html

你可能感兴趣的:(vs2012创建Windows服务)