mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 22:55:52 -06:00
5640f9d04c
Adds Tweak option to Disable MS Recall using DISM and Reg Key.
2.1 KiB
2.1 KiB
Disable Microsoft Recall
Last Updated: 2024-10-24
!!! info The Development Documentation is auto generated for every compilation of WinUtil, meaning a part of it will always stay up-to-date. Developers do have the ability to add custom content, which won't be updated automatically.
Description
Disables MS Recall built into Windows since 24H2.
Preview Code
"WPFTweaksRecallOff": {
"Content": "Disable Recall",
"Description": "Turn Recall off",
"category": "Essential Tweaks",
"panel": "1",
"Order": "a011_",
"registry": [
{
"Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI",
"Name": "DisableAIDataAnalysis",
"Type": "DWord",
"Value": "1",
"OriginalValue": "0"
}
],
"InvokeScript": [
"
Write-Host \"Disable Recall\"
DISM /Online /Disable-Feature /FeatureName:Recall
"
],
"UndoScript": [
"
Write-Host \"Enable Recall\"
DISM /Online /Enable-Feature /FeatureName:Recall
"
],
"link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/DisableRecall"
},
Invoke Script
Write-Host "Disable Recall"
DISM /Online /Disable-Feature /FeatureName:Recall
Undo Script
Write-Host "Enable Recall"
DISM /Online /Enable-Feature /FeatureName:Recall
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 and Microsoft's Website.
Registry Key: DisableAIDataAnalysis
Type: DWord
Original Value: 0
New Value: 1