ANAVEM
Languagefr
Windows 11 system with AI removal process in PowerShell terminal
Open SourceOpen SourcePowerShell

KillWindowsAI

KillWindowsAI is a PowerShell script that removes AI features from Windows 11, including Copilot, Recall, and other AI components. It provides comprehensive removal of AI packages, registry modifications, and privacy-focused system cleanup.

Emanuel DE ALMEIDAEmanuel DE ALMEIDA
17 March 2026 12 min 3
PowerShellOpen Source 12 min
Introduction

Overview

What is KillWindowsAI?

KillWindowsAI is an open-source PowerShell script developed by OlderGeeks that systematically removes AI features from Windows 11. Originally created by zoicware and maintained by the OlderGeeks team, this tool addresses growing privacy concerns about Microsoft's increasing integration of AI features in Windows 11, particularly in the 25H2 build and later versions.

The script targets multiple AI components including Copilot, Recall, Input Insights, AI-powered Paint features, and various other AI services that Microsoft has embedded throughout the operating system. Unlike simple registry tweaks, KillWindowsAI performs deep system modifications including CBS (Component-Based Servicing) package removal and policy adjustments.

Getting Started

KillWindowsAI requires Windows PowerShell 5.1 running with administrator privileges. The script can be executed directly from the internet or downloaded locally.

Warning: Some antivirus software may flag this script as malicious due to its system modification capabilities. This is typically a false positive, but users should temporarily disable antivirus or add exclusions if needed.

The simplest method is running the script directly from PowerShell:

& ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1")))

For users preferring a shortened URL:

& ([scriptblock]::Create((irm 'https://kutt.it/RWAI')))

Usage & Practical Examples

KillWindowsAI supports multiple execution modes depending on user needs:

Interactive GUI Mode

The default execution launches a graphical interface allowing users to select specific AI features to remove. This mode is ideal for users who want granular control over the removal process.

Non-Interactive Batch Mode

For system administrators or users wanting complete AI removal, the script supports non-interactive execution:

& ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1"))) -nonInteractive -AllOptions

Selective Feature Removal

Users can target specific AI components:

& ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1"))) -nonInteractive -Options DisableRegKeys,RemoveAppxPackages,RemoveRecallFeature

Available options include: DisableRegKeys, PreventAIPackageReinstall, DisableCopilotPolicies, RemoveAppxPackages, RemoveRecallFeature, RemoveCBSPackages, RemoveAIFiles, HideAIComponents, DisableRewrite, and RemoveRecallTasks.

Backup and Revert Functionality

The script includes backup capabilities for reversible changes:

& ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1"))) -nonInteractive -backupMode -AllOptions

To revert changes:

& ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1"))) -nonInteractive -revertMode -AllOptions

Performance & Impact

KillWindowsAI's effectiveness varies depending on the Windows 11 build and AI features present. The script performs deep system modifications that can significantly impact system behavior:

  • System Resources: Removing AI components can free up system resources previously allocated to background AI services
  • Privacy Enhancement: Eliminates data collection mechanisms associated with AI features like typing insights and voice recognition
  • Functionality Trade-offs: Users lose access to AI-powered features like Copilot assistance, Recall search, and AI-enhanced Paint tools

The script's impact on system stability appears minimal based on its design, which focuses on disabling rather than deleting core system files. However, the deep modifications to CBS packages and system policies require careful consideration.

Who Should Use KillWindowsAI?

KillWindowsAI targets several specific user groups:

  • Privacy-conscious users who want to eliminate AI data collection from their Windows systems
  • System administrators managing enterprise environments where AI features are unwanted or prohibited
  • Power users comfortable with PowerShell and system modifications who prefer manual control over their systems
  • Users on older hardware who want to eliminate resource-intensive AI features to improve performance

The tool is not recommended for casual users unfamiliar with PowerShell or those who actively use Windows AI features. Users should also have system restore points or backups before running the script.

Verdict

KillWindowsAI represents a focused solution to a specific problem: removing Microsoft's increasingly pervasive AI integration from Windows 11. While the project is extremely new and lacks community validation, its comprehensive approach to AI removal goes beyond simple registry tweaks to address multiple system layers. The inclusion of backup and revert functionality demonstrates thoughtful design, though users should exercise caution given the project's infancy. For privacy-focused users willing to sacrifice AI functionality for system control, KillWindowsAI offers a promising tool that warrants monitoring as it matures.

Capabilities

Key Features

  • Comprehensive AI Removal: Targets Copilot, Recall, Input Insights, and other Windows 11 AI features
  • Registry Modifications: Disables AI-related registry keys and services
  • Package Management: Removes AI Appx packages and CBS store components
  • Reinstall Prevention: Blocks AI package reinstallation through Windows Update
  • Policy Management: Modifies system policies to disable AI features
  • Backup & Revert: Includes functionality to backup and restore changes
  • Multiple Execution Modes: GUI interface and command-line options
  • Granular Control: Select specific AI features to remove
Setup

Installation

Prerequisites

Windows PowerShell 5.1 with Administrator privileges

Direct Execution

# Launch with GUI
& ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1")))

Shortened URL

# Using kutt.it shortener
& ([scriptblock]::Create((irm 'https://kutt.it/RWAI')))
Important: Use Windows PowerShell 5.1, not PowerShell 7, to avoid compatibility issues.
How to Use

Usage Guide

Interactive Mode

Run the script without parameters to launch the GUI interface for selective AI feature removal.

Non-Interactive Mode

# Remove all AI features
& ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1"))) -nonInteractive -AllOptions

Selective Removal

# Remove specific features
& ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1"))) -nonInteractive -Options DisableRegKeys,RemoveAppxPackages

Backup Mode

# Enable backup for reversible changes
& ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1"))) -nonInteractive -backupMode -AllOptions

Revert Changes

# Restore previous state
& ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1"))) -nonInteractive -revertMode -AllOptions
Evaluation

Pros & Cons

Pros
  • Comprehensive AI removal covering multiple system layers
  • Both GUI and command-line interfaces available
  • Granular control over which features to remove
  • Backup and revert functionality for safety
  • Prevents AI package reinstallation
  • Open source with MIT license
  • Regular updates for new Windows builds
Cons
  • Very new project with no community validation
  • No GitHub stars or established user base
  • Requires specific PowerShell 5.1 version
  • May trigger antivirus false positives
  • Deep system modifications carry stability risks
  • Some AI features require manual removal
  • Limited documentation compared to alternatives
Other Options

Alternatives

Windows10Debloater

Comprehensive Windows debloating tool with broader scope and established community

Learn More

O&O ShutUp10++

GUI-based privacy tool with official support, less AI-specific but more stable

Learn More

Sophia Script

Mature PowerShell-based Windows configuration tool with privacy focus

Learn More

WinUtil

Chris Titus Tech's comprehensive Windows utility with debloating features

Learn More

Frequently Asked Questions

Is KillWindowsAI free to use?+
Yes, KillWindowsAI is completely free and open source under the MIT license, allowing unrestricted use and modification.
How does KillWindowsAI compare to other Windows debloating tools?+
KillWindowsAI specifically targets AI features in Windows 11, offering deeper AI-focused removal than general debloating tools, but it's much newer with less community testing.
Can I use KillWindowsAI safely in production environments?+
Exercise caution as this is a very new project (January 2026) with no community validation. Test thoroughly in non-production environments and use backup mode for reversible changes.
What Windows versions does KillWindowsAI support?+
KillWindowsAI targets Windows 11, specifically build 25H2 and later versions where Microsoft has integrated AI features like Copilot and Recall.
How active is KillWindowsAI's development?+
The project was created in January 2026 with initial commits, but activity appears limited. The original developer (zoicware) maintains a similar project with more activity.
References

Official Resources (2)

Emanuel DE ALMEIDA
Written by

Emanuel DE ALMEIDA

Microsoft MCSA-certified Cloud Architect | Fortinet-focused. I modernize cloud, hybrid & on-prem infrastructure for reliability, security, performance and cost control - sharing field-tested ops & troubleshooting.

Further Intelligence

Deepen your knowledge with related resources

Discussion

Share your thoughts and insights

You must be logged in to comment.

Loading comments...