@echo off setlocal :: Vibecoded as FUCK set "tempProfile=%TEMP%\ChromeTempProfile_%RANDOM%" mkdir "%tempProfile%" start "" "chrome.exe" --incognito --user-data-dir="%tempProfile%" :waitloop timeout /t 2 /nobreak >nul tasklist /fi "imagename eq chrome.exe" | find /i "chrome.exe" >nul if %ERRORLEVEL%==0 goto waitloop rmdir /s /q "%tempProfile%" del "%~f0"