DocSpace-client/build/start/restart.bat

16 lines
172 B
Batchfile
Raw Normal View History

2021-10-26 13:14:34 +00:00
@echo off
PUSHD %~dp0..
call runasadmin.bat "%~dpnx0"
2021-11-16 13:14:21 +00:00
POPD
if %errorlevel% == 0 (
2021-11-16 13:14:21 +00:00
pwsh %~dp0/command.ps1 "restart"
)
2021-10-26 13:14:34 +00:00
echo.
2021-10-26 13:39:00 +00:00
if "%1"=="nopause" goto start
pause
:start