Adding start command

This commit is contained in:
Martin Karkowski 2021-07-29 15:28:10 +02:00
parent 36bfe36467
commit edabfd52b2
2 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ if not "%1"=="am_admin" (powershell start -verb runas '%0' am_admin & exit /b)
:@EndCatch :@EndCatch
@REM Uninstall all Services @REM Uninstall all Services
for /f "delims=" %%a in ('dir /s /o /b *01-install.bat') do ( for /f "delims=" %%a in ('dir /s /o /b *00-install.bat') do (
echo %%a echo %%a
call %%a call %%a
) )

View File

@ -5,14 +5,14 @@ if not "%1"=="am_admin" (powershell start -verb runas '%0' am_admin & exit /b)
%@Try% %@Try%
@REM Uninstall IO-Server @REM Uninstall IO-Server
node .\dist\lib\cli\ioServerService.js -m restart node .\dist\lib\cli\ioServerService.js -m start
%@EndTry% %@EndTry%
:@Catch :@Catch
echo restarted IO-Server echo restarted IO-Server
:@EndCatch :@EndCatch
@REM Uninstall all Services @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 echo %%a
call %%a call %%a
) )