使用批处理文件安装或卸载WCF服务(Windows服务)
使用批处理文件安装或卸载WCF服务(Windows服务)安装Windows服务:install.bat
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe CSFramework.LicenseService.exe
Net Start CSFramework.License
sc config CSFramework.License start= auto
pause
卸载Windows服务:uninstall.bat
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe /u CSFramework.LicenseService.exe
pause