-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinstall.bat
More file actions
39 lines (36 loc) · 1.16 KB
/
Copy pathinstall.bat
File metadata and controls
39 lines (36 loc) · 1.16 KB
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
37
38
39
@echo off
setlocal enabledelayedexpansion
echo.
echo ================================================================
echo YawStar Proxy Hunter - Windows Setup
echo ================================================================
echo Designed by: YawHackka
echo ================================================================
echo.
echo [ERROR] Native Windows installation is not supported!
echo.
echo This project requires a Unix-like environment to run properly.
echo.
echo Please use one of these options:
echo.
echo 1. WSL2 (Recommended)
echo - Open PowerShell as Administrator
echo - Run: wsl --install
echo - Restart your computer
echo - Open Ubuntu from Start Menu
echo - Run: bash install.sh
echo.
echo 2. Git Bash
echo - Install Git for Windows: https://git-scm.com/download/win
echo - Open Git Bash
echo - Run: bash install.sh
echo.
echo 3. Docker (Advanced)
echo - Install Docker Desktop
echo - Run the project in a Linux container
echo.
echo For detailed instructions visit:
echo https://github.com/YawStar/Proxy-Hunter
echo.
pause
exit /b 1