turnero: bat kiosko busca Chrome en ambas rutas y fuerza pantalla completa

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Lizandro Guarnizo
2026-07-21 15:21:52 -05:00
co-authored by Claude Sonnet 4.6
parent 4a92425238
commit 28fe662f40
+17 -1
View File
@@ -3,9 +3,25 @@
taskkill /F /IM chrome.exe >nul 2>&1
timeout /t 2 /nobreak >nul
start "" "C:\Program Files\Google\Chrome\Application\chrome.exe" ^
:: Buscar Chrome en rutas comunes
set CHROME=
if exist "C:\Program Files\Google\Chrome\Application\chrome.exe" (
set CHROME="C:\Program Files\Google\Chrome\Application\chrome.exe"
)
if exist "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" (
set CHROME="C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
)
if "%CHROME%"=="" (
echo No se encontro Chrome. Verifica la instalacion.
pause
exit /b 1
)
start "" %CHROME% ^
--kiosk ^
--kiosk-printing ^
--disable-print-preview ^
--no-first-run ^
--no-default-browser-check ^
--disable-infobars ^
"https://erp.laboratorioximenacaicedo.com/erp.php?m=turnero&v=kiosko&autoprint=1"