
🚀 Overview
In Microsoft Outlook 2013, IT administrators may encounter a scenario where end-users report that their Compact Navigation preferences (the view settings for Mail, Calendar, People, and Tasks) are not persisting. Despite making adjustments to the navigation bar, the settings revert to their default state every time the application is closed and reopened.
This behavior is typically rooted in a conflict between the Outlook Fast Shutdown mechanism—a feature introduced to improve the user experience by closing the process more efficiently—and one or more installed COM Add-ins. When a conflict occurs, Outlook may terminate before it has successfully written the updated UI configuration to the user profile, resulting in the loss of customization.
⚙️ Key Technical Details
To resolve this persistence issue, administrators must identify which specific add-in is preventing the save operation or force Outlook to wait for add-ins to acknowledge the shutdown signal. Below are the technical methodologies for remediation.
🔍 Individual Add-in Troubleshooting (Isolation Method)
The goal of this method is to identify the specific add-in causing the conflict by forcing Outlook to wait for a shutdown notification from each one.
- Step 1: Close the Outlook 2013 client.
- Step 2: Open the Registry Editor (
regedit.exe). - Step 3: Navigate to the following path:
HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook\Addins - Step 4: For every subkey (individual add-in) listed under this path, you must create a new value:
- Right-click the subkey, select New > DWORD (32-bit) Value.
- Name the value
RequireShutdownNotification. - Set the Value data to
1.
- Step 5: Launch Outlook, modify the Compact Navigation settings, and close the application.
- Step 6: If the settings are saved, begin removing the
RequireShutdownNotificationvalue from one add-in at a time, restarting Outlook after each removal to see when the issue returns. This identifies the culprit.
Note: Add-ins may also be stored in machine-wide paths or WoW6432Node for 32-bit Office on 64-bit Windows. Check these locations if the issue persists:
HKEY_LOCAL_MACHINE\Software\Microsoft\Office\Outlook\AddinsHKEY_LOCAL_MACHINE\Software\Wow6432Node\Microsoft\Office\Outlook\Addins
🛡️ Global Policy Implementation
If isolating a single add-in is not feasible due to a high volume of third-party tools, you can globally change how Outlook 2013 handles add-in shutdowns via a policy key.
- Registry Path:
HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\15.0\Outlook\Options\Shutdown - Value Name:
AddinFastShutdownBehavior - Value Type: DWORD
- Value Data:
1
Note: You may need to manually create the “Shutdown” key if it does not currently exist in the hive.
📅 Manual UI Workaround
If registry modification is not an immediate option, admins can instruct users to temporarily disable COM add-ins through the interface:
- Navigate to File > Options > Add-Ins.
- At the bottom, select COM Add-ins from the Manage dropdown and click Go.
- Deselect all active add-ins and click OK.
- Restart Outlook, set the desired Compact Navigation options, and close Outlook.
- Re-enable the add-ins using the same menu. The settings should now remain locked in.
⚠️ Impact
- User Experience: Frequent resets of the UI can lead to decreased productivity and increased helpdesk tickets regarding “broken” interface settings.
- Administrative Overhead: Identifying a single conflicting add-in in a complex enterprise environment requires iterative testing across various registry hives.
- System Stability: Incorrectly editing the Windows Registry can cause significant OS instability. Always ensure a full backup of the registry is performed before making manual changes.
- Add-in Performance: Forcing
RequireShutdownNotificationmay slightly increase the time it takes for theoutlook.exeprocess to fully disappear from the Task Manager upon closing.
If an add-in continues to block settings even after these changes, it is recommended to reach out to the third-party software vendor for a compatibility update regarding the Outlook Fast Shutdown feature.
Official Source: Read the full article on Microsoft.com
