taskkill + timeout 2s antes de abrir; agrega --disable-print-preview. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
372 B
Batchfile
12 lines
372 B
Batchfile
@echo off
|
|
:: Cerrar Chrome completamente para que los flags apliquen
|
|
taskkill /F /IM chrome.exe >nul 2>&1
|
|
timeout /t 2 /nobreak >nul
|
|
|
|
start "" "C:\Program Files\Google\Chrome\Application\chrome.exe" ^
|
|
--kiosk-printing ^
|
|
--disable-print-preview ^
|
|
--no-first-run ^
|
|
--no-default-browser-check ^
|
|
"https://erp.laboratorioximenacaicedo.com/erp.php?m=turnero&v=kiosko"
|