To enforce "Do Not Group Messages" in Microsoft Outlook via Group Policy (GPO), the goal is to disable the “Show as Conversations” view in Outlook. This feature is per-user and per-folder, but you can control its default behavior via the registry. Unfortunately, Microsoft does not expose a direct GPO setting specifically for “Do Not Group Messages,” but you can enforce it via registry changes pushed through GPO. Outlook stores the conversation view state in the registry, but it's folder/view-specific, making universal enforcement tricky. Here's what you can do:
- Open Group Policy Management Console.
- Create a new GPO or edit an existing one.
- Navigate to:
User Configuration > Preferences > Windows Settings > Registry
- Add a new Registry Item with the following settings:
Setting | Value |
---|---|
Hive | HKEY_CURRENT_USER |
Key Path | Software\Microsoft\Office<version>\Outlook\Options\Mail |
Value Name | ShowConversationView |
Value Type | REG_DWORD |
Value Data | 0 |
Replace <version>
with your Outlook version (e.g., 16.0
for Outlook 2016, 2019, and Microsoft 365). This disables the conversation view globally if Outlook hasn't overridden the setting via view customization.
If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.
hth
Marcin