Windows Service 安装、启动和卸载_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > Windows Service 安装、启动和卸载

Windows Service 安装、启动和卸载

 2017/11/27 17:50:39  杜子烟  程序员俱乐部  我要评论(0)
  • 摘要:win+R输入cmd,以管理员身份运行cmd;安装:cdC:\Windows\Microsoft.NET\Framework\v4.0.30319(InstallUtil.exe的路径,注意InstallUtil.exe的版本号需要和项目的版本号相同)\InstallUtil.exeD:\demo\test\bin\Debug\Test.exe(项目的路径);启动windows服务netstartTestServive(服务名称)卸载windows服务InstallUtil.exe/uD
  • 标签:Windows Service 安装 卸载 启动

win+R输入cmd,以管理员身份运行cmd;

安装:

 cd C:\Windows\Microsoft.NET\Framework\v4.0.30319(InstallUtil.exe的路径,注意InstallUtil.exe的版本号需要和项目的版本号相同)\InstallUtil.exe D:\demo\test\bin\Debug\Test.exe(项目的路径);

启动windows服务

  net start TestServive(服务名称)

卸载windows服务

  InstallUtil.exe /u D:\demo\test\bin\Debug\Test.exe(项目的路径);

 

发表评论
用户名: 匿名