-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart_manager.bat
More file actions
43 lines (37 loc) · 1.06 KB
/
start_manager.bat
File metadata and controls
43 lines (37 loc) · 1.06 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
40
41
42
43
@echo off
chcp 65001 >nul
cd /d "%~dp0"
echo 🚀 GoodBye DPI Manager başlatılıyor...
echo.
REM Python kontrolü
python --version >nul 2>&1
if %errorlevel% neq 0 (
echo ❌ HATA: Python bulunamadı!
echo Python'u https://python.org adresinden indirip yüklemelisiniz.
pause
exit /b 1
)
REM Gerekli kütüphaneleri kontrol et ve yükle
echo 📦 Gerekli kütüphaneler kontrol ediliyor...
pip show psutil >nul 2>&1
if %errorlevel% neq 0 (
echo 📥 psutil kütüphanesi yükleniyor...
pip install psutil
)
pip show requests >nul 2>&1
if %errorlevel% neq 0 (
echo 📥 requests kütüphanesi yükleniyor...
pip install requests
)
echo.
echo 🎯 GoodBye DPI Manager başlatılıyor...
set PYTHONIOENCODING=utf-8
set PYTHONUTF8=1
python goodbyedpi_manager.py
if %errorlevel% neq 0 (
echo.
echo ❌ HATA: Uygulama çalıştırılırken bir hata oluştu!
echo ⚠️ Yönetici yetkileri ile çalıştırmayı deneyin.
echo 📧 Sorun devam ederse: https://github.com/ByNoSoftware
pause
)