39 lines
1.3 KiB
Markdown
39 lines
1.3 KiB
Markdown
# Disable Activity History
|
|||
|
|
|
||
|
|
```json
|
||
|
|
"WPFTweaksActivity": {
|
||
|
|
"Content": "Disable Activity History",
|
||
|
|
"Description": "This erases recent docs, clipboard, and run history.",
|
||
|
|
"category": "Essential Tweaks",
|
||
|
|
"panel": "1",
|
||
|
|
"Order": "a005_",
|
||
|
|
"registry": [
|
||
|
|
{
|
||
|
|
"Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
|
||
|
|
"Name": "EnableActivityFeed",
|
||
|
|
"Type": "DWord",
|
||
|
|
"Value": "0",
|
||
|
|
"OriginalValue": "<RemoveEntry>"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
|
||
|
|
"Name": "PublishUserActivities",
|
||
|
|
"Type": "DWord",
|
||
|
|
"Value": "0",
|
||
|
|
"OriginalValue": "<RemoveEntry>"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
|
||
|
|
"Name": "UploadUserActivities",
|
||
|
|
"Type": "DWord",
|
||
|
|
"Value": "0",
|
||
|
|
"OriginalValue": "<RemoveEntry>"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
```
|
||
|
|
|
||
|
|
## 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).
|