Install.bat:

Windows服务安装批处理命令_BatWindows服务安装批处理命令_Bat_02

@echo off
"%~dp0InstallUtil\InstallUtil.exe" "%~dp0DataSyncService.exe"
%SystemRoot%\system32\sc config DataSyncService start= auto
%SystemRoot%\system32\sc config DataSyncService type= interact type= own
Pause

View Code

StartService.bat:

Windows服务安装批处理命令_BatWindows服务安装批处理命令_Bat_02

@echo off
%SystemRoot%\system32\net start DataSyncService
pause

View Code

StopService.bat:

Windows服务安装批处理命令_BatWindows服务安装批处理命令_Bat_02

@echo off
%SystemRoot%\system32\net stop DataSyncService
pause

View Code

Uninstall.bat:

Windows服务安装批处理命令_BatWindows服务安装批处理命令_Bat_02

@echo off
"%~dp0InstallUtil\InstallUtil.exe" "%~dp0DataSyncService.exe" /u
pause

View Code