| |

RemoveWindowsAI Tutorial: Disable Copilot and Recall in Windows 11 (PowerShell Guide)

RemoveWindowsAI Quick Tutorial (Windows 11)

If you want more control over Windows 11’s built-in AI features, RemoveWindowsAI is a PowerShell-based tool that can disable or remove items like Copilot, Recall, and other AI integrations. Below is a short, practical walkthrough you can follow safely, especially if you are testing on a lab machine first.


What You Need Before You Start

  • A Windows 11 PC (stable release recommended)
  • Local admin access
  • Internet connection (the script pulls from GitHub)
  • Recommended: test VM and a restore point before making system changes

Step 1: Open PowerShell as Administrator

  1. Right-click Start
  2. Select Windows Terminal (Admin) or PowerShell (Admin)
  3. Approve the UAC prompt

Step 2: Run RemoveWindowsAI in GUI Mode (Recommended)

Paste the command below into the elevated PowerShell window:

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

This launches the tool’s interface so you can choose what to disable or remove.


Step 3: Enable Backup Mode First (Strongly Recommended)

Before applying any changes:

  • Turn on Backup Mode inside the tool
  • This captures current settings so you can roll back later
  • Backup is required if you want to use revert mode properly

Step 4: Select What to Disable or Remove

Common choices include:

  • Disable or remove Windows Copilot
  • Disable or remove Recall
  • Remove AI-related AppX packages
  • Disable AI features inside built-in apps
  • Apply update blocking options to prevent AI components from reinstalling

Apply your selections and let the script finish.


Step 5: Restart the PC

Restarting helps Windows fully apply:

  • Registry and policy changes
  • Package removals
  • Scheduled task removals

Optional: Run in Non-Interactive Mode (Advanced)

Use this only if you understand the impact and have tested first:

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

This applies all available options automatically.


Revert Changes (If You Enabled Backup Mode)

If you need to roll back:

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

Restart again after the revert completes.


Quick Verification Checklist

After rebooting, confirm:

  • Copilot is gone from the taskbar and Settings
  • AI-related settings pages are hidden or disabled
  • Notepad and Paint AI features are disabled (if selected)
  • AI background components are not returning after updates (if update blocking was applied)

Admin Caution (Important)

This tool changes system components and settings. For business devices, test in a VM or pilot group first and document exactly what options were selected so you can reproduce or roll back changes consistently.


Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *