@echo off REM Setup-OpenText.cmd - tiny launcher for Setup-OpenText.ps1 REM REM The PXE PreInstall runner only invokes Type:MSI or Type:EXE entries from REM preinstall.json. This .cmd lives next to Setup-OpenText.ps1 in the staged REM opentext\ subtree and just hands off to PowerShell with bypass policy. REM Both files end up at C:\PreInstall\installers\opentext\ via xcopy /E from REM the WinPE staging step in startnet.cmd. powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0Setup-OpenText.ps1" exit /b %errorlevel%