mirror of
https://github.com/Raphire/Win11Debloat.git
synced 2026-01-01 08:56:21 +00:00
Add option to disable bloat in Brave browser
This commit is contained in:
1
Get.ps1
1
Get.ps1
@@ -27,6 +27,7 @@ param (
|
||||
[switch]$DisableLockscrTips, [switch]$DisableLockscreenTips,
|
||||
[switch]$DisableWindowsSuggestions, [switch]$DisableSuggestions,
|
||||
[switch]$DisableEdgeAds,
|
||||
[switch]$DisableBraveBloat,
|
||||
[switch]$DisableSettings365Ads,
|
||||
[switch]$DisableSettingsHome,
|
||||
[switch]$ShowHiddenFolders,
|
||||
|
||||
9
Regfiles/Disable_Brave_Bloat.reg
Normal file
9
Regfiles/Disable_Brave_Bloat.reg
Normal file
@@ -0,0 +1,9 @@
|
||||
Windows Registry Editor Version 5.00
|
||||
|
||||
[HKEY_LOCAL_MACHINE\Software\Policies\BraveSoftware\Brave]
|
||||
"BraveVPNDisabled"=dword:00000001
|
||||
"BraveWalletDisabled"=dword:00000001
|
||||
"BraveAIChatEnabled"=dword:00000000
|
||||
"BraveRewardsDisabled"=dword:00000001
|
||||
"BraveTalkDisabled"=dword:00000001
|
||||
"BraveNewsDisabled"=dword:00000001
|
||||
9
Regfiles/Sysprep/Disable_Brave_Bloat.reg
Normal file
9
Regfiles/Sysprep/Disable_Brave_Bloat.reg
Normal file
@@ -0,0 +1,9 @@
|
||||
Windows Registry Editor Version 5.00
|
||||
|
||||
[HKEY_LOCAL_MACHINE\Software\Policies\BraveSoftware\Brave]
|
||||
"BraveVPNDisabled"=dword:00000001
|
||||
"BraveWalletDisabled"=dword:00000001
|
||||
"BraveAIChatEnabled"=dword:00000000
|
||||
"BraveRewardsDisabled"=dword:00000001
|
||||
"BraveTalkDisabled"=dword:00000001
|
||||
"BraveNewsDisabled"=dword:00000001
|
||||
4
Regfiles/Undo/Enable_Brave_Bloat.reg
Normal file
4
Regfiles/Undo/Enable_Brave_Bloat.reg
Normal file
@@ -0,0 +1,4 @@
|
||||
Windows Registry Editor Version 5.00
|
||||
|
||||
; Remove all Brave Browser Policies
|
||||
[-HKEY_LOCAL_MACHINE\Software\Policies\BraveSoftware\Brave]
|
||||
@@ -29,6 +29,7 @@ param (
|
||||
[switch]$DisableLockscreenTips, [switch]$DisableLockscrTips,
|
||||
[switch]$DisableSuggestions, [switch]$DisableWindowsSuggestions,
|
||||
[switch]$DisableEdgeAds,
|
||||
[switch]$DisableBraveBloat,
|
||||
[switch]$DisableSettings365Ads,
|
||||
[switch]$DisableSettingsHome,
|
||||
[switch]$ShowHiddenFolders,
|
||||
@@ -2101,6 +2102,10 @@ switch ($script:Params.Keys) {
|
||||
RegImport "> Disabling ads, suggestions and the MSN news feed in Microsoft Edge..." "Disable_Edge_Ads_And_Suggestions.reg"
|
||||
continue
|
||||
}
|
||||
'DisableBraveBloat' {
|
||||
RegImport "> Disabling Brave AI, Crypto, News, Rewards, Talk and VPN from Brave browser..." "Disable_Brave_Bloat.reg"
|
||||
continue
|
||||
}
|
||||
{$_ -in "DisableLockscrTips", "DisableLockscreenTips"} {
|
||||
RegImport "> Disabling tips & tricks on the lockscreen..." "Disable_Lockscreen_Tips.reg"
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user