安装
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe -i "服务名称.exe"
Net Start 服务名称
sc config 服务名称 start= auto
pause
卸载
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe /u -i "服务名称.exe"
注意:需要保证文件在同一目录下
如果不在同一目录,则需要加上全路径:
安装:
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe "D:\windowsServer\OtherWordsService.exe"
Net Start OtherWordsService
sc config OtherWordsService start= auto
pause
卸载:
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe /u "D:\windowsServer\OtherWordsService.exe"