nope/00-install-all-services.bat

18 lines
360 B
Batchfile
Raw Normal View History

set DIR=%~dp0
cd "%DIR%"
if not "%1"=="am_admin" (powershell start -verb runas '%0' am_admin & exit /b)
%@Try%
@REM Uninstall IO-Server
2021-07-29 05:55:32 +00:00
node .\dist\lib\cli\ioServerService.js -m install
%@EndTry%
:@Catch
echo uninstall IO-Server
:@EndCatch
@REM Uninstall all Services
2021-07-29 05:55:32 +00:00
for /f "delims=" %%a in ('dir /s /o /b *01-install.bat') do (
echo %%a
call %%a
)