Chris Titus Script Windows 11 ((hot)) Now
@echo off
title Chris Titus Style Windows 11 Utility Script
echo ==============================================
echo Chris Titus Tech Inspired Windows 11 Tweaks
echo ==============================================
echo.
echo Run as Administrator is required.
echo.
:: Check for Admin rights
net session >nul 2>&1
if %errorlevel% neq 0 (
echo Please run this script as Administrator.
pause
exit /b
)
:menu
cls
echo Choose a task:
echo.
echo 1. Standard Debloat (Recommended)
echo 2. Remove Bloatware Apps
echo 3. Disable Telemetry & Tracking
echo 4. Disable Unnecessary Services
echo 5. Privacy & Security Tweaks
echo 6. Performance Tweaks
echo 7. Restore Default Windows 11 Apps
echo 8. Run ALL Tweaks (Chris Titus Style Full Tune-Up)
echo 9. Exit
echo.
set /p choice="Enter number: "
if "%choice%"=="1" goto debloat
if "%choice%"=="2" goto removeapps
if "%choice%"=="3" goto telemetry
if "%choice%"=="4" goto services
if "%choice%"=="5" goto privacy
if "%choice%"=="6" goto performance
if "%choice%"=="7" goto restore
if "%choice%"=="8" goto full
if "%choice%"=="9" exit
goto menu
:debloat
echo Running Standard Debloat...
call :removeapps
call :telemetry
call :services
call :privacy
call :performance
echo Standard Debloat Complete.
pause
goto menu
:removeapps
echo Removing bloatware apps...
powershell -Command "Get-AppxPackage *3dbuilder* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *bingnews* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *bingsports* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *bingweather* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.GetHelp* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.Microsoft3DViewer* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.MicrosoftOfficeHub* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.MicrosoftSolitaireCollection* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.MixedReality.Portal* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.Office.OneNote* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.OneConnect* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.People* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.Print3D* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.SkypeApp* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.WindowsAlarms* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *microsoft.windowscommunicationsapps* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.WindowsFeedbackHub* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.WindowsMaps* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.WindowsSoundRecorder* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.Xbox.TCUI* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.XboxApp* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.XboxGameCallableUI* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.XboxGamingOverlay* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.XboxIdentityProvider* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.XboxSpeechToTextOverlay* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.YourPhone* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.ZuneMusic* | Remove-AppxPackage"
powershell -Command "Get-AppxPackage *Microsoft.ZuneVideo* | Remove-AppxPackage"
echo Bloatware removal complete.
pause
goto menu
:telemetry
echo Disabling telemetry and data collection...
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v AllowTelemetry /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" /v AllowTelemetry /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Policies\DataCollection" /v AllowTelemetry /t REG_DWORD /d 0 /f
sc config DiagTrack start= disabled
sc stop DiagTrack
sc config dmwappushservice start= disabled
sc stop dmwappushservice
echo Telemetry disabled.
pause
goto menu
:services
echo Disabling unnecessary services...
sc config XboxNetApiSvc start= disabled
sc stop XboxNetApiSvc
sc config XblAuthManager start= disabled
sc stop XblAuthManager
sc config XblGameSave start= disabled
sc stop XblGameSave
sc config wscsvc start= disabled
echo Services disabled.
pause
goto menu
:privacy
echo Applying privacy tweaks...
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo" /v Enabled /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo" /v Enabled /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\DeviceAccess\Global\LooselyCoupled" /v Value /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v EnableActivityFeed /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v PublishUserActivities /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\LocationAndSensors" /v DisableLocation /t REG_DWORD /d 1 /f
echo Privacy tweaks applied.
pause
goto menu
:performance
echo Applying performance tweaks...
:: Disable animations
reg add "HKCU\Control Panel\Desktop" /v UserPreferencesMask /t REG_BINARY /d 9012038010000000 /f
:: Disable transparency
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v EnableTransparency /t REG_DWORD /d 0 /f
:: Set for best performance for background services
powershell -Command "Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\PriorityControl' -Name 'Win32PrioritySeparation' -Value 38"
echo Performance tweaks applied.
pause
goto menu
:restore
echo Restoring default Windows 11 apps...
powershell -Command "Get-AppxPackage -AllUsers | ForEach-Object Add-AppxPackage -DisableDevelopmentMode -Register '$($_.InstallLocation)\AppXManifest.xml'"
echo Restore complete.
pause
goto menu
:full
call :debloat
call :removeapps
call :telemetry
call :services
call :privacy
call :performance
echo Full Chris Titus style Windows 11 tune-up complete.
pause
goto menu
You can save this as titus_win11.bat and run as Administrator. This matches the no-nonsense, modular, debloat-first approach Chris Titus is known for.
2. The GUI won't open on Windows 11 24H2
Solution: Microsoft sometimes blocks remote script execution. Open Windows Terminal (Admin) and type:
powershell -NoProfile -ExecutionPolicy Bypass -Command "irm christitus.com/winutil | iex" chris titus script windows 11
The Ultimate Guide to the Chris Titus Tech Windows Utility for Windows 11
Windows 11, while visually modern, has garnered a reputation for "bloatware"—pre-installed games, promotional apps, and telemetry services that run in the background. For power users and IT professionals looking to streamline a fresh installation, the Chris Titus Tech Windows Utility has become the gold standard. @echo off title Chris Titus Style Windows 11
This comprehensive guide covers what the script is, how to run it safely on Windows 11, and a breakdown of its most critical features. You can save this as titus_win11
5. The "MicroWin" Tab (Advanced)
This is Chris’s masterpiece. This feature downloads a fresh Windows 11 ISO, strips it of bloat before you install it, and creates a custom installation USB. You can install a pure Windows 11 without ever logging into a Microsoft Account (local account only).
5. Essential Tweaks
A one-click “Essentials” option applies a balanced set of tweaks for daily drivers—removing bloat, disabling telemetry, and applying performance fixes without breaking Windows Update.
