DocSpace-client/build/install/install.bat

15 lines
298 B
Batchfile
Raw Normal View History

2021-10-26 13:14:34 +00:00
@echo off
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-10-26 13:14:34 +00:00
echo service create "Onlyoffice%%~nf"
call sc create "Onlyoffice%%~nf" displayname= "ONLYOFFICE %%~nf" binPath= "!servicepath!"
)
2021-09-23 17:58:39 +00:00
)
2021-10-26 13:14:34 +00:00
echo.
2021-09-23 17:58:39 +00:00
pause