--- title: "Windows AI - Disable And Remove" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=887} "WPFTweaksWindowsAI": { "Content": "Windows AI - Disable And Remove", "Description": "Removes and disables all AI features/packages", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", "registry": [ { "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer", "Name": "SettingsPageVisibility", "Value": "hide:aicomponents", "Type": "String", "OriginalValue": "" }, { "Path": "HKLM:\\SOFTWARE\\Policies\\WindowsNotepad", "Name": "DisableAIFeatures", "Value": "1", "Type": "DWord", "OriginalValue": "" } ], "InvokeScript": [ " $Appx = (Get-AppxPackage MicrosoftWindows.Client.CoreAI).PackageFullName $Sid = (Get-LocalUser $Env:UserName).Sid.Value New-Item \"HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Appx\\AppxAllUserStore\\EndOfLife\\$Sid\\$Appx\" -Force Get-AppxPackage -AllUsers \"*Copilot*\" | Remove-AppxPackage -AllUsers Get-AppxPackage -AllUsers Microsoft.MicrosoftOfficeHub | Remove-AppxPackage -AllUsers if ($Appx) { Remove-AppxPackage $Appx } Set-Service -Name WSAIFabricSvc -StartupType Disabled Disable-WindowsOptionalFeature -FeatureName Recall -Online -NoRestart Write-Host \"Windows AI Disabled\" " ], ``` ## Registry Changes Applications and System Components store and retrieve configuration data to modify Windows settings, so we can use the registry to change many settings in one place. You can find information about the registry on [Wikipedia](https://en.wikipedia.org/wiki/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry).