Remote Control System Overview Server (Host): Shows dashboard of all connected clients by computer name. Client: Connects to server, registers with computer name, listens for commands. Setup 1. Install Dependencies pip install -r requirements.txt 2. Run the Server (Host) python server.py Open your browser to http://localhost:8000 to see the dashboard. 3. Run the Client (on each client PC) Edit SERVER_URL in client.py to point to your server's IP address. Run: python client.py To run client on startup (Windows): Create a shortcut to client.py (or a .bat file that runs it). Place the shortcut in %APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup. Next Steps Add command sending from dashboard to clients. Add authentication/security.