forked from ChrisTitusTech/winutil
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into ui-ux/update-to-look-and-feel-of-the-ui
- Loading branch information
Showing
14 changed files
with
329 additions
and
298 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -321,5 +321,5 @@ | |
"Order": "a084_", | ||
"Type": "Button", | ||
"ButtonWidth": "300" | ||
}, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
# 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. | ||
|
||
<!-- BEGIN CUSTOM CONTENT --> | ||
|
||
<!-- END CUSTOM CONTENT --> | ||
|
||
<details> | ||
<summary>Preview Code</summary> | ||
|
||
```json | ||
"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" | ||
}, | ||
``` | ||
|
||
</details> | ||
|
||
## Invoke Script | ||
|
||
```powershell | ||
Write-Host "Disable Recall" | ||
DISM /Online /Disable-Feature /FeatureName:Recall | ||
``` | ||
## Undo Script | ||
|
||
```powershell | ||
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](https://www.wikiwand.com/en/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry). | ||
|
||
### Registry Key: DisableAIDataAnalysis | ||
|
||
**Type:** DWord | ||
|
||
**Original Value:** 0 | ||
|
||
**New Value:** 1 | ||
|
||
<!-- BEGIN SECOND CUSTOM CONTENT --> | ||
|
||
<!-- END SECOND CUSTOM CONTENT --> | ||
|
||
|
||
[View the JSON file](https://github.com/ChrisTitusTech/winutil/tree/main/config/tweaks.json) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.