1. 安装 windows服务
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\installutil [服务路径](例:C:\\test\mytestService.exe)
net start [服务名称](例:mytestService)
2. 卸载服务
sc delete [服务名]
3. 关闭服务
net stop [服务名称](例:mytestService)
另外,安装服务时打开控制台,请使用【管理员】权限打开。