How to Deploy Specific Outlook Font Settings via Intune?

0
0
Asked By TechGuru89 On

I'm looking to apply a policy across our organization for Outlook that sets the default font to Aptos and the font size to 11 for new emails and replies. All our devices are Entra joined and Intune enrolled. I'd really appreciate any tips or guidance on how to implement this organization-wide!

2 Answers

Answered By FontNinja22 On

I went through a similar setup recently. For a global change in Outlook, you can run this command: `Get-Mailbox -ResultSize unlimited | Set-MailboxMessageConfiguration -DefaultFontName "Calibri" -DefaultFontSize "11"`. If you want to set it for individual mailboxes, use `Set-MailboxMessageConfiguration -Identity -DefaultFontName "Trebuchet MS" -DefaultFontSize "11"`. You can find additional details on default fonts for the Microsoft Office suite in their documentation.

Answered By AdminMaster17 On

If you're using Intune, check out some guides for configuring Outlook font settings. A good starting point is to search "Intune Outlook font configuration," and you should find helpful resources. One link I found quite beneficial is from CloudInfra, which walks through setting default fonts in Outlook with Intune.

TechGuru89 -

Thanks for the pointers! I’ll definitely take a look at those configurations.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.