@echo off REM IoT Firmware Loader - Windows launcher cd /d "%~dp0" if exist "venv" ( call venv\Scripts\activate.bat ) else ( echo Creating virtual environment... python -m venv venv call venv\Scripts\activate.bat pip install PyQt6 scapy requests ) echo Starting IoT Firmware Loader... python main.py