Microsoft Edge includes a “Read Aloud” feature that utilizes built-in Text-to-Speech (TTS) engines to audibly read the contents of a webpage to the user. While this is an excellent accessibility tool, the underlying architecture often relies on cloud-based neural TTS services (like Azure Cognitive Services) to generate high-quality, natural-sounding voices. When activated, the browser may transmit the textual content of the page to external servers for speech synthesis. In strict enterprise, legal, or zero-trust environments, transmitting proprietary documents, classified communications, or sensitive internal wikis to external cloud services for audio processing represents a severe data exfiltration vulnerability. To guarantee data containment, this localized text telemetry must be cryptographically blocked.
This guide explains how to completely disable ‘Read Aloud’ via Group Policy in Microsoft Edge, enforcing a strict zero-trust model where all cloud-based speech synthesis telemetry is forcefully severed.
Disable Read Aloud via Group Policy
To enforce a strict block that disables the Read Aloud TTS engine globally across the browser, we must deploy an administrative template. Note that this requires Windows 11 Pro, Enterprise, or Education editions.
- Log into Windows 11 with an Administrator account.
- Press the Windows Key + R to open the Run dialogue box.
- Type
gpedit.mscand press Enter to launch the Local Group Policy Editor. - In the left-hand navigation pane, strictly follow this exact path:
Computer Configuration > Administrative Templates > Microsoft Edge - In the right-hand pane, locate the policy named Enable Read Aloud.
- Double-click the policy to open its configuration window.
- Select the radio button next to Disabled. (By explicitly disabling this policy, we instruct the Edge rendering engine to permanently sever the UI hooks for the TTS engine and block the transmission of text payloads to external neural voice servers).
- Click Apply, then click OK.
Verify the Configuration Lockdown
Group Policy changes require the browser to read the registry upon its next launch.
Close all active instances of Microsoft Edge. To force the policy update immediately across the OS, open Command Prompt as Administrator and run gpupdate /force. To verify the restriction is active, open Microsoft Edge and navigate to any webpage. Right-click on a block of text or an empty space on the page. The “Read Aloud” option will be completely removed from the context menu, and the keyboard shortcut (Ctrl+Shift+U) will be ignored by the browser. The browser is now cryptographically bound to operate as a sterile environment, entirely mitigating the risk of text-to-speech data exfiltration.