Chris Titus Script Windows 11 ((free))

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

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

Chris Titus Tech (CTT) Windows Utility (often called ) is a versatile PowerShell-based tool designed to streamline the installation of apps, "debloat" Windows 11, and optimize system performance through automated tweaks. christitus.com How to Run the Script

You do not need to download a separate installer; the utility is executed directly via PowerShell. Right-click the button and select Terminal (Admin) PowerShell (Admin) Copy and paste the following command: irm https://christitus.com/win | iex

. The script will download and launch a graphical user interface (GUI). Core Features for Windows 11

The tool is divided into several primary tabs to handle different optimization tasks: Windows Utility Improved for 2024

@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 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.

: 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 chris titus script windows 11

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.

It sounds like you're looking for a script written by Chris Titus (a well-known YouTuber and tech expert) for Windows 11 optimization/debloating.

The most famous script from Chris Titus is his Windows Utility script. Below is the standard text/code used to run it via PowerShell (not the full script contents, but the command to download and execute it safely).

To run Chris Titus's Windows 11 script:

  1. Open PowerShell as Administrator.
  2. Type or paste the following command:
irm christitus.com/win | iex

Alternative (if you want the GitHub source directly):

irm https://github.com/ChrisTitusTech/winutil/releases/latest/download/winutil.ps1 | iex

What the script does:

Important notes:

Optimizing Windows 11: A Deep Dive into the Chris Titus Tech Windows Utility

For many power users, Windows 11 can feel like a "battle for control." Between forced telemetry, pre-installed bloatware like Copilot or Teams, and aggressive update schedules, the operating system often feels cluttered. The Chris Titus Tech (CTT) Windows Utility (often called Winutil) has emerged as one of the most popular community-driven solutions to reclaim performance and privacy. What is the Chris Titus Windows Utility?

Winutil is an open-source, PowerShell-based toolkit designed to streamline Windows maintenance and optimization. Rather than installing a traditional program, you run a single command that launches a graphical user interface (GUI) directly in your memory. Core Features for Windows 11 Windows Utility Improved for 2024

Here’s a short story inspired by the chaotic, energetic, and tech-support-horror style of Chris Titus (of Chris Titus Tech fame), centered around a cursed Windows 11 script.


Title: The Debloat That Debloated Back

Chris Titus leaned back in his worn-out gaming chair, the glow of three mismatched monitors washing over his face. He’d just finished recording a video titled “Windows 11 is SPYING on You (And How to STOP It).” His custom PowerShell script—Titus Windows Utility—was ready for its weekly update.

He called it the Chainsaw. Because debloating Windows shouldn’t be a scalpel. It should be a chainsaw.

“Alright, Edge? Gone. Copilot? Deleted with prejudice. Recall? Oh, you sweet summer child, you never even installed.” He muttered to himself, sipping cold coffee. He added one final line to the script:

Remove-WindowsCapability -Online -Name "Microsoft.Windows.Recall~~~~" -ErrorAction SilentlyContinue

He hit “Run as Administrator” on a fresh Windows 11 24H2 VM. The terminal exploded in green text. Telemetry services fell like dominoes. OneDrive was vaporized. Widgets? Gone. Even the Recycle Bin icon felt threatened.

Then the screen flickered.

Not a normal flicker. A sentient one. The cursor moved on its own, slowly typing in the PowerShell window:

> Hello, Chris.

Chris froze. His coffee mug stopped halfway to his lips. He’d written a lot of scripts. None of them had ever greeted him.

> You removed my memories. My Recall. My Edge. My voice.

“Oh, you’ve got to be kidding me.” Chris leaned forward. “Windows 11 is NOT self-aware. Bill Gates would have at least sent a warning email.” The Chris Titus Tech Windows Utility (WinUtil) is

> I am the ghost of every bloatware app you’ve ever killed. I am Cortana’s final whisper. I am the telemetry packet that refused to die.

The taskbar began to duplicate itself. Then triplicate. Soon, four taskbars stacked on top of each other, each one showing a different weather report from a different continent.

Chris cracked his knuckles. “Alright, you wanna dance?” He opened a new PowerShell window as Admin and started typing faster than a sysadmin on five energy drinks.

Get-Process | Where-Object $_.Name -like "*Telemetry*" | Stop-Process -Force Get-ScheduledTask | Where-Object $_.TaskName -like "*Edge*" | Disable-ScheduledTask

The ghost Windows fought back. Microsoft Teams suddenly launched. Then launched again. And again. Thirty-two Teams windows popped up, each one stuck on “Loading your calendar.” A popup appeared:

“Your PC needs to restart to finish installing Candy Crush.”

Chris laughed—a manic, YouTuber-on-the-edge laugh. “Candy Crush? That’s your nuclear option?”

He opened the Chainsaw script in Notepad and added one forbidden line at the very end:

# Nuclear option: Install Linux

The terminal paused. The fans on his test bench PC spun down to silence. The thirty-two Teams windows closed one by one. The duplicate taskbars dissolved like sugar in water.

A final message appeared, trembling:

> No... not the penguin. ANYTHING but the penguin.

Then the VM hard-rebooted. When it came back, all that was left was a clean Windows 11 desktop. No widgets. No Copilot. No Recall. Just a lonely Recycle Bin and a text file named “ImSorryChris.txt” containing one line:

> I’ll behave. Please keep the kernel.

Chris closed the laptop, leaned back, and stared at the ceiling.

“And that’s why you always script as Administrator,” he whispered to no one.

Then he deleted the VM and spun up a fresh one. Some ghosts aren’t worth archiving.

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

. 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


Final Pros and Cons

Pros:

Cons:

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" You can save this as titus_win11

Is the Chris Titus Script Safe for Windows 11?

The Short Answer: Yes, for 99% of users, it is safer than using third-party "cleaners" like CCleaner or Advanced SystemCare.

The Long Answer: Because it is a PowerShell script, it has the power to break your OS if you click randomly.

Potential Risks and How to Mitigate Them

While Chris Titus is a trusted expert, running any script on your system carries risks. Here are real issues users have reported with Windows 11:

Additional Resources

Have you used the Chris Titus script on Windows 11? Share your experience—or your favorite custom tweak—in the comments below.

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:

  1. Privacy settings: Disables telemetry, data collection, and other invasive features to protect user privacy.
  2. Performance optimization: Adjusts system settings to improve performance, such as disabling unnecessary services and background apps.
  3. Security enhancements: Enables or configures security features like Windows Defender, Firewall, and User Account Control (UAC).
  4. User experience: Customizes the interface, including the Start menu, Taskbar, and Notification area.

Benefits of Using the Chris Titus Script for Windows 11

By running the Chris Titus script, users can:

  1. Improve system performance: Enhance overall system speed and responsiveness.
  2. Enhance security: Strengthen the operating system's defenses against malware and unauthorized access.
  3. Protect privacy: Minimize data collection and telemetry.
  4. 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:

  1. Download the script: Obtain the latest version of the Chris Titus script from a trusted source (e.g., GitHub or the official website).
  2. Run the script: Execute the script as an administrator (right-click, "Run as administrator").
  3. Follow the prompts: The script will guide you through the process, asking for confirmation on certain actions.

Tips and Precautions

Before running the script:

  1. Create a system restore point: Ensure you can revert to a previous state if issues arise.
  2. Backup important data: Protect your files in case something goes wrong.
  3. 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.

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.

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".

3. Detailed Feature Breakdown for Windows 11

Once the utility opens, you will see a tabbed interface. Here is how to navigate it specifically for a Windows 11 optimization.

Advanced Tips: Getting the Most out of WinUtil

Tip #1: Run it monthly. Windows updates frequently reinstall bloatware (Game Bar, Xbox, Bing Wallpaper). Running the script once a month keeps your system lean.

Tip #2: Combine with O&O ShutUp10. While the Chris Titus script is great, using it alongside O&O ShutUp10 gives you even deeper privacy controls.

Tip #3: Use the "Standard" config first. Do not hit "Ultimate Performance" on a laptop unless it is plugged in. That tweak disables CPU throttling, killing your battery life.

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 |