-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.bat
More file actions
38 lines (31 loc) · 919 Bytes
/
install.bat
File metadata and controls
38 lines (31 loc) · 919 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
37
38
@echo off
setlocal EnableExtensions EnableDelayedExpansion
set "ROOT=%~dp0"
echo === PrecisionGamingOptimizer — ULTIMATE FPS MODE ===
echo.
call "%ROOT%scripts\detect.bat" || goto :error
call "%ROOT%scripts\windows_ultimate.bat" || goto :error
call "%ROOT%scripts\cpu_ultimate.bat" || goto :error
call "%ROOT%scripts\ram_ultimate.bat" || goto :error
call "%ROOT%scripts\network_ultimate.bat" || goto :error
call "%ROOT%games\fivem_ultimate.bat" || goto :error
call "%ROOT%games\fortnite_ultimate.bat" || goto :error
echo.
echo SUCCESS: Optimization completed.
echo Reboot recommended.
echo.
echo Press any key to exit...
pause >nul
exit /b 0
:error
echo.
color 0C
echo ======================================
echo ERROR: INSTALLATION STOPPED
echo ======================================
echo.
echo Scroll up to see the error message above.
echo.
echo Press any key to exit...
pause >nul
exit /b 1