17 lines
495 B
Batchfile
17 lines
495 B
Batchfile
@echo off
|
|
setlocal EnableExtensions DisableDelayedExpansion
|
|
set "PROJECT_ROOT=%~dp0"
|
|
set "POWERSHELL_EXE=%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe"
|
|
|
|
"%POWERSHELL_EXE%" -NoLogo -NoProfile -ExecutionPolicy Bypass -File "%PROJECT_ROOT%scripts\run_windows.ps1" %*
|
|
set "RESULT=%ERRORLEVEL%"
|
|
|
|
if not "%RESULT%"=="0" (
|
|
echo.
|
|
echo DoctorWorkstation failed to start. Exit code: %RESULT%
|
|
echo Press any key to close this window.
|
|
pause >nul
|
|
)
|
|
|
|
endlocal & exit /b %RESULT%
|