Introduction
In my previous post, I shared a PowerShell template for managing registry settings via Microsoft Intune Remediations. The script handles both HKCU and HKLM, supports all registry types, and works on Microsoft Entra ID and hybrid joined devices.
But what’s a good template without a real-world example?
If you manage Windows devices, you’ve probably had this request:
- “Can we standardize the email font across the company?”
- “Everyone uses different fonts and sizes – it looks unprofessional”
- “New employees should start with the correct font settings”
Default fonts in Outlook are stored in the registry as binary values – not exactly something you can deploy with a settings catalog policy. Microsoft Intune doesn’t provide a native way to configure this.
This post shows how to solve that problem using the registry management template. The configuration:
- Sets default fonts for composing, replying, and plain text emails
- Applies to all user profiles on the device
- Deploys via Intune Remediations
Important: This only works for Outlook (classic) – the desktop app from Microsoft 365 Apps. The new Outlook for Windows stores settings in the cloud and cannot be configured via registry.

Read more…