Page 1 of 1

Packet tis-brave

Published: August 27, 2024 - 10:05 AM
by SeiyaGame
Good morning,

Some time ago, I helped you create the Brave package, available in this thread: viewtopic.php?t=3554.
However, I have just noticed a small problem with it.

In the package, I had disabled automatic component updates by modifying the registry key ComponentUpdatesEnabled.
However, by disabling this option, the built-in ad-blocking feature no longer works!

It is therefore necessary to reactivate ComponentUpdatesEnabled (Set the registry key to 1):

Code: Select all

    # Disabling Google Chrome Auto-Update and Telemetry
    registry_set(HKEY_LOCAL_MACHINE, r"SOFTWARE\Policies\BraveSoftware\Brave", "DeviceAutoUpdateDisabled", 0)
    registry_set(HKEY_LOCAL_MACHINE, r"SOFTWARE\Policies\BraveSoftware\Brave", "MetricsReportingEnabled", 0)
    
    # DO NOT DISABLE THIS OR AD BLOCKING WILL NOT WORK
    registry_set(HKEY_LOCAL_MACHINE, r"SOFTWARE\Policies\BraveSoftware\Brave", "ComponentUpdatesEnabled", 1)
Please correct my mistake...