De-Slopify Windows 11 – REMOVE AI in 5 Minutes
Whokeys Mid-Year Sale – 25% Off with Code: TS25
Windows 10 LTSC iot– $11.1:biitt.ly/ts25L
Windows 11 LTSC iot– $25:biitt.ly/vW267
Windows 11 Pro – $23: biitt.ly/Bfj6E
Windows 11 Home – $22: biitt.ly/gHG0u
Windows 10 Pro – $17: biitt.ly/XNQ7G
Office 2016 Pro – $29: biitt.ly/dtNvb
Get great deals on Windows 11 CDKeys or buy Windows 10 Pro OEM keys a: whokeys.com
—————————-
🛒 epicpants.com
🎵 zweihander.com
💻 teksyndicate.com
🎮 Gaming Channel: youtube.com/@easymode
————————–
If you’re like me, you’re sick of these sociopathic dweebs shoving their ai slop down your throat. We don’t have to take it… and there are a few easy things you can do to get the ai out of your Windows 11 installation.
Here are the meaty links:
Check out CyberCPU Tech’s video on this: www.youtube.com/watch?v=0YLfE76k9z8
My first choice, use LTSC:
teksyndicate.com/switch-to-windows-10-ltsc-heres-how-i-set-it-up/
Windows 11 LTSC vs Windows 10 LTSC Gaming Battle: www.youtube.com/watch?v=bValhYdrATw
The Basic Method to remove AI
Use O&O ShutUp10++: www.oo-software.com/en/shutup10
Then, if you want…
Get a better start menu without web results: github.com/Open-Shell/Open-Shell-Menu
Bring back Classic Paint (mspaint): win7games.com/#mspaint
Replace notepad with one of these:
Notepad++ (way more features, great for programming): notepad-plus-plus.org/
Metapad (like a better version of the Windows 7/Aero notepad): liquidninja.com/metapad/
Akelpad (small, simple, and fast): akelpad.sourceforge.net/en/index.php
I use RetroBar to replace my taskbar:
github.com/dremin/RetroBar
My RetroBar dark themes: www.deviantart.com/madhale/art/RetroBar-Dark-Modes-Windows-95-2000-XP-Etc-1053142400
My powershell script to remove all this ai stuff:
Social
🐘 Fediverse: easymode.im/@ward/
🐦 Twitter: twitter.com/teksyndicate/
🛸 Bluesky: bsky.app/profile/wardhale.bsky.social
💬 Discord: discord.gg/vsCxNSD
🎥 Twitch: www.twitch.tv/midnightdojo/
💼 Marketing & Sponsorships
For inquiries, email: [email protected]
We only email from @teksyndicate.com or @midnightdojo.com — beware of other addresses!
As an Amazon Associate, we may earn from qualifying purchases.
Get the windows version here (LTSC and IOT are in the one version) archive.org/details/en-us_windows_10_iot_enterprise_ltsc_2021_x64_dvd_257ad90f_202301
rufus here to make a bootable rufus.ie/en/
#Windows11cdkey #techtips #whokeyswindows11
# must be admin admin
if (-not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) {
Write-Error "This script must be run as Administrator."
exit 1
}
# Disable Recall
$recallPath = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsAI"
New-Item -Path $recallPath -Force | Out-Null
New-ItemProperty -Path $recallPath -Name "DisableAIDataAnalysis" -Value 1 -PropertyType DWORD -Force
New-ItemProperty -Path $recallPath -Name "DisableAIRecall" -Value 1 -PropertyType DWORD -Force
# Disable Copilot
$copilotPath = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot"
New-Item -Path $copilotPath -Force | Out-Null
New-ItemProperty -Path $copilotPath -Name "TurnOffWindowsCopilot" -Value 1 -PropertyType DWORD -Force
# Disable Search Web Suggestions and Bing in the Start Menu
$searchPath = "HKCU:\Software\Policies\Microsoft\Windows\Explorer"
New-Item -Path $searchPath -Force | Out-Null
New-ItemProperty -Path $searchPath -Name "DisableSearchBoxSuggestions" -Value 1 -PropertyType DWORD -Force
$searchReg = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search"
New-Item -Path $searchReg -Force | Out-Null
New-ItemProperty -Path $searchReg -Name "BingSearchEnabled" -Value 0 -PropertyType DWORD -Force
New-ItemProperty -Path $searchReg -Name "CortanaConsent" -Value 0 -PropertyType DWORD -Force
# Disable Edge Discover / Sidebar With the AI Slop
$edgePath = "HKLM:\SOFTWARE\Policies\Microsoft\Edge"
New-Item -Path $edgePath -Force | Out-Null
New-ItemProperty -Path $edgePath -Name "HubsSidebarEnabled" -Value 0 -PropertyType DWORD -Force
# Disable Widgets
$widgetsPath = "HKLM:\SOFTWARE\Policies\Microsoft\Dsh"
New-Item -Path $widgetsPath -Force | Out-Null
New-ItemProperty -Path $widgetsPath -Name "AllowNewsAndInterests" -Value 0 -PropertyType DWORD -Force
# Kill Recall Task if exists
$recallTaskPath = "\Microsoft\Windows\Application Experience\"
$recallTaskName = "AITask"
if (Get-ScheduledTask -TaskPath $recallTaskPath -TaskName $recallTaskName -ErrorAction SilentlyContinue) {
Disable-ScheduledTask -TaskPath $recallTaskPath -TaskName $recallTaskName
}
# --- Persistent Protection ---
# Create startup scheduled task to re-apply this script
$taskName = "Persist_DisableWindowsAI"
$scriptPath = "$PSScriptRoot\AIKiller.ps1"
# Delete existing if exists
if (Get-ScheduledTask -TaskName $taskName -ErrorAction SilentlyContinue) {
Unregister-ScheduledTask -TaskName $taskName -Confirm:$false
}
# Delete Paint and Notepad because they are infected with the ai slop virus
Get-AppxPackage *Microsoft.Paint* | Remove-AppxPackage
Get-AppxPackage *Microsoft.WindowsNotepad* | Remove-AppxPackage
# Don't let those bastards update
Get-AppxPackage *Microsoft.Paint* | Remove-AppxProvisionedPackage -Online
Get-AppxPackage *Microsoft.WindowsNotepad* | Remove-AppxProvisionedPackage -Online
# Install Notepad++
winget install --id Notepad++.Notepad++ -e
Write-Host "HELL YES! Recall, Copilot, Web Search, and AI Slop murdered! You may need to run this again after an update..."
#
## _ _ _
## __ _(_) _ __ ___ _ _ _ __ __| | ___ _ __ ___ __| |
## / _` | | | '_ ` _ \| | | | '__/ _` |/ _ \ '__/ _ \/ _` |
##| (_| | | | | | | | | |_| | | | (_| | __/ | | __/ (_| |
## \__,_|_| |_| |_| |_|\__,_|_| \__,_|\___|_| \___|\__,_|




