mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-06 22:58:32 +00:00
* updated theme to the latest version * Update en.yaml * removed all the order from the docs * add the store link * update homepage * add filename and line number to all the code blocks and also removed pages * auto pull the code from the json files * Merge branch 'main' into winutil-new-features * the script updated linenostart= * Delete LaptopHibernation.md
55 lines
1.8 KiB
Markdown
55 lines
1.8 KiB
Markdown
---
|
|
title: "Brave Debloat"
|
|
description: ""
|
|
---
|
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1134}
|
|
"WPFTweaksBraveDebloat": {
|
|
"Content": "Brave Debloat",
|
|
"Description": "Disables various annoyances like Brave Rewards,Leo AI,Crypto Wallet and VPN",
|
|
"category": "z__Advanced Tweaks - CAUTION",
|
|
"panel": "1",
|
|
"registry": [
|
|
{
|
|
"Path": "HKLM:\\SOFTWARE\\Policies\\BraveSoftware\\Brave",
|
|
"Name": "BraveRewardsDisabled",
|
|
"Type": "DWord",
|
|
"Value": "1",
|
|
"OriginalValue": "<RemoveEntry>"
|
|
},
|
|
{
|
|
"Path": "HKLM:\\SOFTWARE\\Policies\\BraveSoftware\\Brave",
|
|
"Name": "BraveWalletDisabled",
|
|
"Type": "DWord",
|
|
"Value": "1",
|
|
"OriginalValue": "<RemoveEntry>"
|
|
},
|
|
{
|
|
"Path": "HKLM:\\SOFTWARE\\Policies\\BraveSoftware\\Brave",
|
|
"Name": "BraveVPNDisabled",
|
|
"Type": "DWord",
|
|
"Value": "1",
|
|
"OriginalValue": "<RemoveEntry>"
|
|
},
|
|
{
|
|
"Path": "HKLM:\\SOFTWARE\\Policies\\BraveSoftware\\Brave",
|
|
"Name": "BraveAIChatEnabled",
|
|
"Type": "DWord",
|
|
"Value": "0",
|
|
"OriginalValue": "<RemoveEntry>"
|
|
},
|
|
{
|
|
"Path": "HKLM:\\SOFTWARE\\Policies\\BraveSoftware\\Brave",
|
|
"Name": "BraveStatsPingEnabled",
|
|
"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).
|