Skip to content

Instantly share code, notes, and snippets.

@adityatelange
Created January 5, 2025 13:33
Show Gist options
  • Save adityatelange/65e33d670245ad7956e47161e093a0fd to your computer and use it in GitHub Desktop.
Save adityatelange/65e33d670245ad7956e47161e093a0fd to your computer and use it in GitHub Desktop.
Disable Brave: Wallet,VPN,Rewards,AIChat

Disable Brave-AIChat Brave-Rewards Brave-VPN Brave-Wallet using GroupPolicy

  1. Create directory mkdir /etc/brave/policies/managed/
sudo mkdir -p /etc/brave/policies/managed/
  1. Create a file GroupPolicy.json
sudo nano /etc/brave/policies/managed/GroupPolicy.json

Paste the folowing:

{
    "BraveAIChatEnabled": false,
    "BraveRewardsDisabled": true,
    "BraveVPNDisabled": true,
    "BraveWalletDisabled": true
}
  1. Restart Brave Browser.

Reference: brave/brave-browser#33733 (comment)

Comments are disabled for this gist.