mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 22:55:52 -06:00
94 lines
2.2 KiB
Markdown
94 lines
2.2 KiB
Markdown
|
# Disable Activity History
|
||
|
|
||
|
Last Updated: 2024-08-07
|
||
|
|
||
|
|
||
|
!!! 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
|
||
|
|
||
|
This erases recent docs, clipboard, and run history.
|
||
|
|
||
|
<!-- BEGIN CUSTOM CONTENT -->
|
||
|
|
||
|
<!-- END CUSTOM CONTENT -->
|
||
|
|
||
|
<details>
|
||
|
<summary>Preview Code</summary>
|
||
|
|
||
|
```json
|
||
|
{
|
||
|
"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": "1"
|
||
|
},
|
||
|
{
|
||
|
"Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
|
||
|
"Name": "PublishUserActivities",
|
||
|
"Type": "DWord",
|
||
|
"Value": "0",
|
||
|
"OriginalValue": "1"
|
||
|
},
|
||
|
{
|
||
|
"Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
|
||
|
"Name": "UploadUserActivities",
|
||
|
"Type": "DWord",
|
||
|
"Value": "0",
|
||
|
"OriginalValue": "1"
|
||
|
}
|
||
|
],
|
||
|
"link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/AH"
|
||
|
}
|
||
|
```
|
||
|
|
||
|
</details>
|
||
|
|
||
|
## 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: EnableActivityFeed
|
||
|
|
||
|
**Type:** DWord
|
||
|
|
||
|
**Original Value:** 1
|
||
|
|
||
|
**New Value:** 0
|
||
|
|
||
|
### Registry Key: PublishUserActivities
|
||
|
|
||
|
**Type:** DWord
|
||
|
|
||
|
**Original Value:** 1
|
||
|
|
||
|
**New Value:** 0
|
||
|
|
||
|
### Registry Key: UploadUserActivities
|
||
|
|
||
|
**Type:** DWord
|
||
|
|
||
|
**Original Value:** 1
|
||
|
|
||
|
**New Value:** 0
|
||
|
|
||
|
|
||
|
|
||
|
<!-- BEGIN SECOND CUSTOM CONTENT -->
|
||
|
|
||
|
<!-- END SECOND CUSTOM CONTENT -->
|
||
|
|
||
|
|
||
|
[View the JSON file](https://github.com/ChrisTitusTech/winutil/tree/main/config/tweaks.json)
|
||
|
|