@echo off echo Starting Countdown Timer Application... if not exist "venv" ( echo Virtual environment not found! echo Please run setup.bat first pause exit /b 1 ) call venv\Scripts\activate.bat python main.py if errorlevel 1 ( echo. echo Application exited with an error pause )