Adding start command

This commit is contained in:
Martin Karkowski 2021-07-29 15:28:10 +02:00
parent 36bfe36467
commit b2f83771b2

View File

@ -5,14 +5,14 @@ if not "%1"=="am_admin" (powershell start -verb runas '%0' am_admin & exit /b)
%@Try%
@REM Uninstall IO-Server
node .\dist\lib\cli\ioServerService.js -m restart
node .\dist\lib\cli\ioServerService.js -m start
%@EndTry%
:@Catch
echo restarted IO-Server
:@EndCatch
@REM Uninstall all Services
for /f "delims=" %%a in ('dir /s /o /b *02-restart.bat') do (
for /f "delims=" %%a in ('dir /s /o /b *01-start.bat') do (
echo %%a
call %%a
)