How to Disable Generative AI Features in Google Chrome on Windows 11

For users of Google Chrome on Windows 11, there are ways to disable all Generative AI features through Chrome Enterprise settings via the Windows Registry. This article will guide you through both the Registry Editor method and command-line instructions to achieve a more traditional browsing experience.

Overview of AI Features in Chrome

With the introduction of features like “AI Mode”in the address bar and various AI-driven enhancements throughout the browser, many users are noticing a significant shift in their browsing experience. Notably, features such as custom themes, automated text generation, and AI-integrated history search are now commonplace. While these innovations can offer added convenience, they also raise privacy concerns and affect how users interact with their browsers.

If you prefer to maintain a classic interface and functionality, disabling these AI features in Google Chrome is a feasible option. While some of these can be altered in the browser settings (using the “Flags”page), such changes may revert with updates. For a more enduring solution, modifying the Registry is recommended.

Make sure to back up your system completely before making any changes to the Registry. Incorrect modifications could lead to system instability. These settings will apply to all Google Chrome installations, including those in the Dev, Beta, and Canary Channels.

Step-by-Step Guide to Disabling AI Features via the Registry

Follow these steps to modify the Registry and disable AI features in Google Chrome:

  1. Click on Start on your Windows 11 device.
  2. Type regedit into the search bar and select the top result to open the Registry Editor.
  3. Navigate to the following path: HKEY_LOCAL_MACHINE\SOFTWARE\Policies
  4. Right-click on the Policies key, select New, and then click Key.
  5. Name the new key Google and press Enter.
  6. Right-click the Google key, select New, then choose Key again.
  7. Name this key Chrome and press Enter.
  8. Right-click the newly created Chrome key, select New, and then choose “DWORD (32-bit) Value”.

    Name it AIModeSettings and set the value to 2 to disable AI Mode.

  9. Repeat the process for the following keys, ensuring you set the values as indicated:

    • GeminiSettings: Set value to 1 to disable Gemini integration.
    • GeminiActOnWebSettings: Set to 1 to prevent Gemini from acting on web content.
    • HelpMeWriteSettings: Set to 2 to disable the “Help me write” feature.
    • CreateThemesSettings: Set to 2 to disable AI-driven theme creation.
    • DevToolsGenAiSettings: Set to 2 to prevent DevTools from using AI for debugging.
    • HistorySearchSettings: Set to 2 to disable AI History Search.
    • TabCompareSettings: Set to 2 to disable AI tab comparison.
    • TabOrganizerSettings: Set to 2 to disable the tab organization feature.
    • AutofillPredictionSettings: Set to 2 to disable AI-powered auto-fill.
    • SearchContentSharingSettings: Set to 1 to disable sharing options with AI.
    • GenAILocalFoundationalModelSettings: Set to 1 to stop using local AI models.
  10. After making all the modifications, restart your computer to apply the changes.

Disabling AI Features Using Command Prompt

If you prefer command-line methods, you can disable Chrome’s AI features using Command Prompt:

  1. Open Start and search for Command Prompt (or Terminal).Right-click and select Run as administrator.
  2. Input the following command, then press Enter:
  3. (reg add "HKLM\SOFTWARE\Policies\Google\Chrome"/f reg add "HKLM\SOFTWARE\Policies\Google\Chrome"/v AIModeSettings /t REG_DWORD /d 2 /f reg add "HKLM\SOFTWARE\Policies\Google\Chrome"/v GeminiSettings /t REG_DWORD /d 1 /f reg add "HKLM\SOFTWARE\Policies\Google\Chrome"/v HelpMeWriteSettings /t REG_DWORD /d 2 /f reg add "HKLM\SOFTWARE\Policies\Google\Chrome"/v CreateThemesSettings /t REG_DWORD /d 2 /f reg add "HKLM\SOFTWARE\Policies\Google\Chrome"/v HistorySearchSettings /t REG_DWORD /d 2 /f reg add "HKLM\SOFTWARE\Policies\Google\Chrome"/v TabCompareSettings /t REG_DWORD /d 2 /f reg add "HKLM\SOFTWARE\Policies\Google\Chrome"/v AutofillPredictionSettings /t REG_DWORD /d 2 /f reg add "HKLM\SOFTWARE\Policies\Google\Chrome"/v DevToolsGenAiSettings /t REG_DWORD /d 2 /f reg add "HKLM\SOFTWARE\Policies\Google\Chrome"/v SearchContentSharingSettings /t REG_DWORD /d 1 /f reg add "HKLM\SOFTWARE\Policies\Google\Chrome"/v TabOrganizerSettings /t REG_DWORD /d 2 /f reg add "HKLM\SOFTWARE\Policies\Google\Chrome"/v GeminiActOnWebSettings /t REG_DWORD /d 1 /f reg add "HKLM\SOFTWARE\Policies\Google\Chrome"/v GenAILocalFoundationalModelSettings /t REG_DWORD /d 1 /f)

  4. After executing the command, restart your computer.

Restoring Default Settings

If you decide to revert these changes, use the following command in Command Prompt to remove the Chrome policies:

  • reg delete "HKLM\SOFTWARE\Policies\Google\Chrome"/f

To delete the parent Google key, if no longer in use, execute:

  • reg delete "HKLM\SOFTWARE\Policies\Google"/f

Keep in mind that it may take some time for these changes to reflect in Chrome due to the nature of registry edits.

Conclusion

Following these steps will enable you to access a more conventional browsing experience in Google Chrome, free from the distractions of AI features. Keeping your browser as you prefer can significantly enhance your usability and privacy.

Stay updated with the latest guides and information by subscribing to our newsletter!

Subscribe

Leave a Reply

Your email address will not be published. Required fields are marked *