0% found this document useful (0 votes)
5 views2 pages

Message

This document outlines a batch script designed for deep optimization of Windows systems, requiring administrator privileges to run. It includes steps for cleaning temporary files, disabling telemetry and bloatware, optimizing network and storage performance, and adjusting system settings for maximum efficiency. The script concludes with a prompt to restart the PC after the optimizations are complete.

Uploaded by

tbds9188x2
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views2 pages

Message

This document outlines a batch script designed for deep optimization of Windows systems, requiring administrator privileges to run. It includes steps for cleaning temporary files, disabling telemetry and bloatware, optimizing network and storage performance, and adjusting system settings for maximum efficiency. The script concludes with a prompt to restart the PC after the optimizations are complete.

Uploaded by

tbds9188x2
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

@echo off

title ULTIMATE WINDOWS OPTIMIZER - GOD MODE


color 0a
echo =====================================================
echo ⚡ ULTIMATE WINDOWS OPTIMIZATION SUPERSCRIPT ⚡
echo =====================================================
echo.
echo 🔧 WARNING: This script performs DEEP OPTIMIZATIONS!
echo ⚠ Run as ADMIN and RESTART your PC after completion.
echo.

:: ================ ADMIN CHECK ================


NET FILE >nul 2>&1
if %errorlevel% neq 0 (
echo ERROR: RUN THIS SCRIPT AS ADMINISTRATOR!
pause
exit /b
)

:: ================ AGGRESSIVE CLEANUP ================


echo [1/10] NUKING TEMP FILES & JUNK...
del /q /f /s "%temp%\*" >nul 2>&1
del /q /f /s "%windir%\temp\*" >nul 2>&1
del /q /f /s "%localappdata%\Temp\*" >nul 2>&1
rd /s /q "%temp%" >nul 2>&1
md "%temp%" >nul 2>&1
cleanmgr /sagerun:1 >nul 2>&1

:: ================ KILL BLOATWARE & TELEMETRY ================


echo [2/10] ☠️ DISABLING TELEMETRY & BLOATWARE...
sc stop DiagTrack >nul 2>&1
sc stop dmwappushservice >nul 2>&1
sc config DiagTrack start= disabled >nul 2>&1
sc config dmwappushservice start= disabled >nul 2>&1
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v
"AllowTelemetry" /t REG_DWORD /d 0 /f >nul 2>&1

:: ================ SUPERCHARGE NETWORK ================


echo [3/10] 🌐 OPTIMIZING NETWORK SPEED...
netsh int tcp set global autotuninglevel=restricted >nul 2>&1
netsh int tcp set global rss=enabled >nul 2>&1
ipconfig /flushdns >nul 2>&1
netsh winsock reset >nul 2>&1

:: ================ SSD/HDD ULTRA-OPTIMIZATION ================


echo [4/10] 🚀 OPTIMIZING STORAGE (SSD/HDD)...
for %%d in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do (
if exist %%d:\ (
echo 🔄 Optimizing drive %%d...
defrag %%d: /U /V >nul 2>&1
optimize-drive %%d: /retrim /verbose >nul 2>&1
fsutil behavior set DisableLastAccess 1 >nul 2>&1
)
)

:: ================ DISABLE UNNECESSARY SERVICES ================


echo [5/10] ⚡ DISABLING USELESS SERVICES...
sc stop "SysMain" >nul 2>&1
sc config "SysMain" start= disabled >nul 2>&1
sc stop "Superfetch" >nul 2>&1
sc config "Superfetch" start= disabled >nul 2>&1
sc stop "WindowsSearch" >nul 2>&1
sc config "WindowsSearch" start= disabled >nul 2>&1

:: ================ MAXIMIZE CPU & POWER PERFORMANCE ================


echo [6/10] ⚡ TUNING CPU FOR MAX PERFORMANCE...
powercfg /setactive 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c >nul 2>&1
powercfg /h off >nul 2>&1
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t
REG_DWORD /d 0 /f >nul 2>&1

:: ================ DISABLE ANIMATIONS & VISUAL EFFECTS ================


echo [7/10] 🎮 DISABLING VISUAL EFFECTS FOR SPEED...
reg add "HKCU\Control Panel\Desktop" /v "DragFullWindows" /t REG_SZ /d "0" /f >nul
2>&1
reg add "HKCU\Control Panel\Desktop" /v "MenuShowDelay" /t REG_SZ /d "0" /f >nul
2>&1
reg add "HKCU\Control Panel\Desktop" /v "UserPreferencesMask" /t REG_BINARY /d
"90320780100000" /f >nul 2>&1

:: ================ REPAIR SYSTEM FILES ================


echo [8/10] 🔧 RUNNING DISM + SFC (FIXING ERRORS)...
DISM /Online /Cleanup-Image /RestoreHealth >nul 2>&1
sfc /scannow >nul 2>&1

:: ================ DISABLE STARTUP BLOAT ================


echo [9/10] 🚫 KILLING STARTUP BLOAT...
reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Run" /va /f >nul 2>&1
reg delete "HKLM\Software\Microsoft\Windows\CurrentVersion\Run" /va /f >nul 2>&1
taskkill /f /im "OneDrive.exe" >nul 2>&1

:: ================ FINAL TWEAKS ================


echo [10/10] 🏁 APPLYING FINAL TWEAKS...
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory
Management" /v "DisablePagingExecutive" /t REG_DWORD /d 1 /f >nul 2>&1
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory
Management" /v "LargeSystemCache" /t REG_DWORD /d 1 /f >nul 2>&1
reg add "HKLM\SYSTEM\CurrentControlSet\Control\FileSystem" /v
"NtfsDisableLastAccessUpdate" /t REG_DWORD /d 1 /f >nul 2>&1

echo.
echo =====================================================
echo ✅ OPTIMIZATION COMPLETE! RESTART YOUR PC NOW! ✅
echo =====================================================
echo.
pause

You might also like