2026-02-10 19:49:36 +00:00
---
2026-02-12 20:33:11 +00:00
title : "Disable Activity History"
2026-02-10 19:49:36 +00:00
description : ""
---
2026-02-18 12:37:09 -06:00
2026-02-12 20:33:11 +00:00
```json {filename="config/tweaks.json",linenos=inline,linenostart=2}
2026-01-14 20:28:45 +02:00
"WPFTweaksActivity": {
"Content": "Disable Activity History",
2026-03-02 13:08:27 -06:00
"Description": "Erases recent docs, clipboard, and run history.",
2026-01-14 20:28:45 +02:00
"category": "Essential Tweaks",
"panel": "1",
"registry": [
{
"Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
"Name": "EnableActivityFeed",
"Value": "0",
2026-02-18 20:17:33 +00:00
"Type": "DWord",
2026-01-14 20:28:45 +02:00
"OriginalValue": "<RemoveEntry>"
},
{
"Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
"Name": "PublishUserActivities",
"Value": "0",
2026-02-18 20:17:33 +00:00
"Type": "DWord",
2026-01-14 20:28:45 +02:00
"OriginalValue": "<RemoveEntry>"
},
{
"Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
"Name": "UploadUserActivities",
"Value": "0",
2026-02-18 20:17:33 +00:00
"Type": "DWord",
2026-01-14 20:28:45 +02:00
"OriginalValue": "<RemoveEntry>"
}
],
` ``
## Registry Changes
2026-02-10 19:49:36 +00:00
2026-03-26 15:26:48 -05:00
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.
2026-01-14 20:28:45 +02:00
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 ).