Chris Titus Script Windows 11 __top__ (EXCLUSIVE • GUIDE)
Streamlining the Modern OS: The Chris Titus Windows 11 Utility
Windows 11 is often criticized for its "bloat"—a mix of pre-installed apps, background telemetry, and intrusive features like Copilot that can degrade performance and compromise privacy. For power users and system administrators, manually disabling these features across multiple machines is a tedious, hours-long task. Enter the Chris Titus Tech (CTT) Windows Utility (often called
), an open-source PowerShell-based script designed to consolidate hours of system optimization into a single, automated interface. What is the Chris Titus Script?
The utility is a compilation of Windows maintenance tasks that Chris Titus, a prominent tech creator, performs on every system he uses. It is not a traditional application but a script launched via a single command in an elevated PowerShell window: irm christitus.com/win | iex chris titus script windows 11
. This opens a graphical user interface (GUI) that allows users to toggle complex system settings without ever touching the Windows Registry. Core Features and Capabilities
The utility is divided into five primary modules, each targeting a specific aspect of the Windows experience: ChrisTitusTech/winutil: Chris Titus Tech's Windows Utility
The Chris Titus Tech Windows Utility (WinUtil) is an open-source PowerShell tool designed to debloat and optimize Windows 11 by streamlining system configurations, such as removing background processes and disabling telemetry. It offers a GUI to apply recommended tweaks and manage software, typically run via irm christitus.com/win | iex in an administrative terminal. Learn more on Your Windows Guide Debloat Windows 11 Master tutorial Streamlining the Modern OS: The Chris Titus Windows
Chris Titus Script vs. Manual Tweaking
| Feature | Manual Registry Editing | Chris Titus Script | | :--- | :--- | :--- | | Time Required | 3+ hours (Research + edits) | 3 minutes | | Risk | High (One wrong reg key = Blue Screen) | Low (Buttons are tested) | | Bloatware Removal | Manual uninstall (1 by 1) | Bulk removal | | Telemetry | 15 different registry keys | 1 click |
Q: Does the Chris Titus script work on Windows 11 24H2?
A: Yes, as of late 2025, the script is updated weekly to support the latest Windows 11 builds, including 24H2. Check the GitHub Issues page for any recent bugs.
Step 2: Run the Script (Two Commands)
Copy and paste the following two lines, pressing Enter after each: Chris Titus Script vs
Set-ExecutionPolicy Unrestricted -Scope Process -Force
iwr -useb https://christitus.com/win | iex
What these commands do:
Set-ExecutionPolicyallows the script to run for your current PowerShell session only (temporary, no permanent security risk).iwr(Invoke-WebRequest) downloads the script from Chris Titus’s official domain.iex(Invoke-Expression) executes the code.
Do not run scripts from random URLs you find on forums. Always ensure the URL is
christitus.com/winor the official GitHub repo:https://github.com/ChrisTitusTech/winutil.