Chris Titus Script Windows 11
The script you are looking for is part of Chris Titus Tech’s Windows Utility (WinUtil), a popular PowerShell-based tool designed to debloat, optimize, and customize Windows 11. It consolidates hundreds of system tweaks into a single interface. How to Run the Script
To launch the utility, you must run it through PowerShell or Windows Terminal with administrator privileges.
Open Terminal as Admin: Right-click the Start button and select Terminal (Admin) or PowerShell (Admin).
Execute the Command: Copy and paste the following command into the terminal and press Enter:iwr -useb https://christitus.com/win | iex
Wait for the GUI: The command downloads and launches a graphical interface where you can select specific tweaks. Key Features for Windows 11
Chris Titus Tech Windows Utility (often called ) is a powerful, open-source PowerShell script designed to streamline, debloat, and optimize Windows 11 systems. It functions as a "one-stop-shop" for power users to remove unwanted features, automate software installations, and adjust system settings that are typically buried deep within Windows. christitus.com Core Functionalities
The utility is divided into several primary tabs, each targeting different aspects of system management: Installations
: Users can select and install hundreds of popular applications (like browsers, media players, and developer tools) in bulk using
. It also supports updating all installed programs with a single click. : This is the heart of the "debloat" process. It offers Essential Tweaks (generally safe for most users) and Advanced Tweaks (which require more caution). Privacy & Telemetry
: Disables Microsoft telemetry, activity history, and location tracking. UI/UX Adjustments
: Removes the "Search" bar from the taskbar, enables "End Task" on right-click, and disables the Game DVR. Performance
: Sets unnecessary background services to "Manual" startup, disables hibernation, and cleans temporary files. chris titus script windows 11
: Includes tools to fix broken Windows Updates, reset network settings, and manage advanced system configurations.
: A feature for building custom, "stripped-down" Windows 11 ISOs for fresh installations. How to Run the Script
The tool is designed to run live from GitHub without requiring a permanent installation. Open PowerShell : Right-click the button and select Terminal (Admin) PowerShell (Admin) Execute the Command
: Copy and paste the following short command into the terminal and press Enter: irm https://christitus.com/win | iex Use the Interface
: A graphical user interface (GUI) will launch, allowing you to select your desired tweaks and programs. Critical Considerations & Risks
While widely popular with millions of users, the script is a "use at your own risk" tool.
Chris Titus Script for Windows 11: A Comprehensive Guide
Chris Titus, a renowned tech expert, has created a popular script for optimizing and customizing Windows 11. The script, designed to simplify the process of tweaking and configuring Windows 11, has gained significant attention among users seeking to enhance their operating system's performance, security, and overall user experience.
What is the Chris Titus Script for Windows 11?
The Chris Titus script is a batch script that automates a series of tasks to optimize and customize Windows 11. The script covers various aspects, including:
- Privacy settings: Disables telemetry, data collection, and other invasive features to protect user privacy.
- Performance optimization: Adjusts system settings to improve performance, such as disabling unnecessary services and background apps.
- Security enhancements: Enables or configures security features like Windows Defender, Firewall, and User Account Control (UAC).
- User experience: Customizes the interface, including the Start menu, Taskbar, and Notification area.
Benefits of Using the Chris Titus Script for Windows 11 The script you are looking for is part
By running the Chris Titus script, users can:
- Improve system performance: Enhance overall system speed and responsiveness.
- Enhance security: Strengthen the operating system's defenses against malware and unauthorized access.
- Protect privacy: Minimize data collection and telemetry.
- Streamline the user experience: Customize the interface to suit individual preferences.
How to Use the Chris Titus Script for Windows 11
To use the script, follow these steps:
- Download the script: Obtain the latest version of the Chris Titus script from a trusted source (e.g., GitHub or the official website).
- Run the script: Execute the script as an administrator (right-click, "Run as administrator").
- Follow the prompts: The script will guide you through the process, asking for confirmation on certain actions.
Tips and Precautions
Before running the script:
- Create a system restore point: Ensure you can revert to a previous state if issues arise.
- Backup important data: Protect your files in case something goes wrong.
- Understand the changes: Review the script's actions to ensure you're comfortable with the modifications.
Conclusion
The Chris Titus script for Windows 11 offers a convenient way to optimize, customize, and secure your operating system. By understanding the script's capabilities and taking necessary precautions, users can enjoy a more efficient, secure, and personalized Windows 11 experience.
@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.
The Chris Titus Windows Utility (WinUtil) is a powerful, open-source PowerShell script designed to streamline, debloat, and optimize Windows 10 and 11. It is widely used by power users and IT professionals to remove telemetry, uninstall pre-installed bloatware, and automate software installation through package managers like WinGet. The Story of the "Silent Machine"
Elias sat in front of his brand-new high-end laptop, but he didn't feel like it was truly his. Every time he moved the mouse, a news widget he didn't want popped up. In the background, "telemetry" services were whispering his every click back to a server halfway across the world. His 16GB of RAM was already half-full, eaten by pre-installed "bloatware"—games he’d never play and AI assistants he hadn't asked for. He felt like a guest in his own house.
Elias opened the Terminal as an Administrator. He typed a single, cryptic incantation:irm christitus.com/win | iex. Benefits of Using the Chris Titus Script for
The blue window flickered, and suddenly, a sleek interface appeared—the WinUtil. It was like a digital Swiss Army knife. Elias didn't hesitate. He clicked "Recommended Tweaks".
The Chris Titus Tech Windows Utility (often referred to as the "Chris Titus Script") has become a staple for power users looking to reclaim control over Windows 11. By consolidating hours of manual registry edits and system deep-dives into a single automated interface, this utility streamlines the process of debloating, optimizing privacy, and bulk-installing essential software. What is the Chris Titus Windows Utility?
At its core, the utility is an open-source PowerShell-based tool designed to automate system maintenance and performance tuning. It provides a graphical user interface (GUI) that allows you to:
Debloat Windows 11: Remove pre-installed "bloatware" apps like Microsoft Teams, OneDrive, and various Bing-related tools.
Enhance Privacy: Disable telemetry, tracking, advertising IDs, and intrusive AI features like Copilot.
Optimize Performance: Fine-tune system services, enable high-performance power plans, and fix common Windows Update issues.
Bulk Install Apps: Use the integrated WinGet or Chocolatey package managers to install dozens of programs (browsers, dev tools, utilities) in one click. How to Run the Script
The most common way to launch the utility is via a single command in an elevated PowerShell window, which pulls the latest version directly from GitHub. ChrisTitusTech/winutil: Chris Titus Tech's Windows Utility
Here’s an interesting Windows 11-focused feature idea inspired by Chris Titus-style power-user tweaks: a "Snapshot & Revert" system-level sandbox that captures a lightweight system state before risky changes and lets you safely revert selected changes without a full system restore.
3. The "Config" Tab (Windows 11 vs Windows 10)
Chris updates this script constantly. The "Config" tab lets you choose:
- Standard (Recommended): Balanced privacy and performance (Best for most users).
- Minimal: Disables almost everything. Good for low-end tablets or VMs.
- Server: For Windows Server OS.
Key Features of the Chris Titus Script for Windows 11
When you launch the script, you are greeted with an interactive, color-coded menu. Here’s what each section does:
Risk 4: Script Updates Changing Behavior
The script is updated frequently. A setting named “Remove OneDrive” in 2023 might now fully uninstall OneDrive (permanent). Always review the script’s GitHub changelog before running the latest version.


