[转][C#]TopSelf

新建一个批处理,用于启动 TopSelf 服务

@echo off
Service.exe install
net start Service

或者简化成

@echo off
Service.exe install start

卸载也是一句批处理

@echo off
Service.exe uninstall

猜你喜欢

转载自www.cnblogs.com/z5337/p/9224329.html