-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathrun.bat
More file actions
37 lines (29 loc) · 800 Bytes
/
run.bat
File metadata and controls
37 lines (29 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
@echo off
REM Quick start script for WIFIjam on Windows
echo.
echo ╦ ╦╦╔═╗╦ ╦┌─┐┌┬┐
echo ║║║║╠╣ ║ ║├─┤│││
echo ╚╩╝╩╚ ╩ ╩┴ ┴┴ ┴
echo WiFi Security Testing Tool v2.0
echo.
REM Check Python
python --version >nul 2>&1
if errorlevel 1 (
echo [ERROR] Python not found. Please install Python 3.8+
pause
exit /b 1
)
echo [INFO] Checking dependencies...
REM Check if dependencies are installed
python -c "import aiohttp" >nul 2>&1
if errorlevel 1 (
echo [INFO] Installing dependencies...
pip install -r requirements.txt
)
echo.
echo [INFO] Starting WIFIjam...
echo [WARNING] Windows has limited support. Use WSL2 for full functionality.
echo.
REM Run the application
python -m wifijam.cli gui %*
pause