Chris Titus Script Windows 11 Instant
This is the most powerful section for Windows 11 users. It allows you to modify the registry and system services.
Advanced Tweaks:
There is no official “undo” button. To revert:
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
If you are tired of:
...then yes, you should use the Chris Titus Windows 11 script.
It is the fastest, most reliable way to turn Windows 11 from an "Advertising Operating System" back into a productive tool. Just remember: With great power comes great responsibility. Do not click every "Disable" button without reading the tooltip first. This is the most powerful section for Windows 11 users
Final Command to paste (Admin PowerShell):
irm christitus.com/winutil | iex
Disclaimer: Always back up your data before modifying system settings. The author and Chris Titus are not liable for data loss resulting from misconfiguration.
@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. Advanced Tweaks:
Chris Titus Tech (CTT) Windows Utility is a popular PowerShell-based script used to debloat, optimize, and customize Windows 11. It provides a graphical interface to remove telemetry, install software in bulk, and apply performance tweaks without manually digging through registry settings. How to Run the Script To launch the utility, you must run it in PowerShell Administrator privileges Right-click the Start button and select Terminal (Admin) PowerShell (Admin)
Copy and paste the following command into the window and press powershell iwr -useb https://christitus.com/win | iex Use code with caution. Copied to clipboard (Note: Users also frequently use irm christitus.com/win | iex as a shortcut.) Key Features for Windows 11 Windows Utility in 2026 - Everything You Need to Know
This is where Windows 11 users see the biggest changes.