-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_app.bat
More file actions
30 lines (25 loc) · 711 Bytes
/
Copy pathrun_app.bat
File metadata and controls
30 lines (25 loc) · 711 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
@echo off
REM PC Cleaner & Security Tool - Run as Administrator
REM This batch file runs the application with administrator privileges
echo ========================================
echo PC Cleaner ^& Security Tool
echo Starting with Administrator privileges...
echo ========================================
echo.
cd /d "%~dp0"
REM Check if Python is installed
python --version >nul 2>&1
if errorlevel 1 (
echo ERROR: Python is not installed or not in PATH
echo Please install Python 3.8 or higher
pause
exit /b 1
)
REM Run the application
python pc_cleaner_app.py
if errorlevel 1 (
echo.
echo ERROR: Application failed to start
echo Check logs\app.log for details
pause
)