@echo off setlocal title Quantix Free Tweaking Utility color 0B set "DISCORD_URL=https://discord.gg/8EjCRqJuG" set "YOUTUBE_URL=https://www.youtube.com/@quantixtweaks" :menu cls echo ================================================== echo QUANTIX FREE TWEAKING UTILITY echo ================================================== echo. echo [1] Apply performance tweaks echo [2] Apply gaming tweaks echo [3] Clean temporary files echo [4] Speed up app startup echo [5] Disable Windows suggestions echo [R] Restore Windows defaults echo. echo [Q] Join our Discord server echo [Y] Visit our YouTube channel echo [X] Exit echo. echo ================================================== choice /C 12345RQYX /N /M "Select an option: " if errorlevel 9 goto exit if errorlevel 8 goto youtube if errorlevel 7 goto discord if errorlevel 6 goto restore if errorlevel 5 goto suggestions if errorlevel 4 goto startup if errorlevel 3 goto cleanup if errorlevel 2 goto gaming if errorlevel 1 goto performance :performance cls echo Applying performance tweaks... echo. rem Use Windows' built-in High Performance power plan. powercfg /setactive SCHEME_MIN >nul 2>&1 rem Favor performance over animations and transparency for this user. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects" /v VisualFXSetting /t REG_DWORD /d 2 /f >nul reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v EnableTransparency /t REG_DWORD /d 0 /f >nul reg add "HKCU\Control Panel\Desktop" /v MenuShowDelay /t REG_SZ /d 100 /f >nul echo [OK] High Performance power mode enabled. echo [OK] Visual effects set to best performance. echo [OK] Transparency disabled and menus made faster. echo. echo Some changes take effect after signing out or restarting. call :pausemenu goto menu :gaming cls echo Applying gaming tweaks... echo. rem Disable background Game DVR recording for this user. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\GameDVR" /v AppCaptureEnabled /t REG_DWORD /d 0 /f >nul reg add "HKCU\System\GameConfigStore" /v GameDVR_Enabled /t REG_DWORD /d 0 /f >nul rem Disable Windows mouse acceleration for consistent aiming. reg add "HKCU\Control Panel\Mouse" /v MouseSpeed /t REG_SZ /d 0 /f >nul reg add "HKCU\Control Panel\Mouse" /v MouseThreshold1 /t REG_SZ /d 0 /f >nul reg add "HKCU\Control Panel\Mouse" /v MouseThreshold2 /t REG_SZ /d 0 /f >nul echo [OK] Game DVR background recording disabled. echo [OK] Mouse acceleration disabled. echo. echo Sign out or restart before testing the changes. call :pausemenu goto menu :cleanup cls echo Cleaning temporary files... echo Files currently in use will be skipped. echo. del /f /s /q "%TEMP%\*" >nul 2>&1 for /d %%D in ("%TEMP%\*") do rd /s /q "%%D" >nul 2>&1 echo [OK] Temporary-file cleanup finished. call :pausemenu goto menu :startup cls echo Applying startup tweaks... echo. rem Remove the artificial delay before startup apps are launched. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v StartupDelayInMSec /t REG_DWORD /d 0 /f >nul echo [OK] Startup-app delay disabled. echo. echo The change takes effect the next time you sign in. call :pausemenu goto menu :suggestions cls echo Disabling Windows suggestions and promotional content... echo. set "CONTENT_KEY=HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" reg add "%CONTENT_KEY%" /v SilentInstalledAppsEnabled /t REG_DWORD /d 0 /f >nul reg add "%CONTENT_KEY%" /v SystemPaneSuggestionsEnabled /t REG_DWORD /d 0 /f >nul reg add "%CONTENT_KEY%" /v SubscribedContent-338388Enabled /t REG_DWORD /d 0 /f >nul reg add "%CONTENT_KEY%" /v SubscribedContent-338389Enabled /t REG_DWORD /d 0 /f >nul echo [OK] Suggested apps and promotional tips disabled. call :pausemenu goto menu :restore cls echo Restoring standard Windows defaults... echo. powercfg /setactive SCHEME_BALANCED >nul 2>&1 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects" /v VisualFXSetting /t REG_DWORD /d 0 /f >nul reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v EnableTransparency /t REG_DWORD /d 1 /f >nul reg add "HKCU\Control Panel\Desktop" /v MenuShowDelay /t REG_SZ /d 400 /f >nul reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\GameDVR" /v AppCaptureEnabled /t REG_DWORD /d 1 /f >nul reg add "HKCU\System\GameConfigStore" /v GameDVR_Enabled /t REG_DWORD /d 1 /f >nul reg add "HKCU\Control Panel\Mouse" /v MouseSpeed /t REG_SZ /d 1 /f >nul reg add "HKCU\Control Panel\Mouse" /v MouseThreshold1 /t REG_SZ /d 6 /f >nul reg add "HKCU\Control Panel\Mouse" /v MouseThreshold2 /t REG_SZ /d 10 /f >nul reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v StartupDelayInMSec /f >nul 2>&1 set "CONTENT_KEY=HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" reg add "%CONTENT_KEY%" /v SilentInstalledAppsEnabled /t REG_DWORD /d 1 /f >nul reg add "%CONTENT_KEY%" /v SystemPaneSuggestionsEnabled /t REG_DWORD /d 1 /f >nul reg add "%CONTENT_KEY%" /v SubscribedContent-338388Enabled /t REG_DWORD /d 1 /f >nul reg add "%CONTENT_KEY%" /v SubscribedContent-338389Enabled /t REG_DWORD /d 1 /f >nul echo [OK] Balanced power mode and standard settings restored. echo. echo Sign out or restart to finish restoring the settings. call :pausemenu goto menu :discord start "" "%DISCORD_URL%" goto menu :youtube start "" "%YOUTUBE_URL%" goto menu :pausemenu echo. pause exit /b :exit cls echo Thanks for using Quantix Free Tweaking Utility. timeout /t 2 /nobreak >nul endlocal exit /b