DocSpace-client/build/install/install.bat

12 lines
231 B
Batchfile
Raw Normal View History

2021-09-23 17:58:39 +00:00
PUSHD %~dp0..\..
setlocal EnableDelayedExpansion
if %errorlevel% == 0 (
2021-09-23 17:58:39 +00:00
for /R "build\run\" %%f in (*.bat) do (
call build\run\%%~nxf
2021-09-23 17:58:39 +00:00
echo !servicepath!
call sc create "Onlyoffice %%~nf" binPath="!servicepath!"
)
2021-09-23 17:58:39 +00:00
)
pause