写了个简单的windows服务,使用管理员模式,可以启动服务,但是启动以后,不能停止服务是为什么呢?
install.bat:
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe E:\NET拾遗\windows服务\WindowsServiceTest2\WindowsServiceTest2\bin\Debug\WindowsServiceTest2.exe
Net Start MyService2
sc config MyService2 start= auto
uninstall.bat:
net stop MyService2
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe /u E:\NET拾遗\windows服务\WindowsServiceTest2\WindowsServiceTest2\bin\Debug\WindowsServiceTest2.exe
可以通过kill process解决的,但是有没有根本解决的方式呢