mirror of
https://github.com/KelvinTegelaar/CIPP.git
synced 2026-04-25 08:16:01 +03:00
[GH-ISSUE #4082] [Feature Request]: Add CIPP standard to configure default outlook fontname and fontsize #1852
Labels
No labels
API
Feature
NotABug
NotABug
Planned
Sponsor Priority
Sponsor Priority
bug
documentation
duplicate
enhancement
needs more info
no-activity
no-priority
not-assigned
pull-request
react-conversion
react-conversion
roadmap
security
stale
unconfirmed-by-user
unconfirmed-by-user
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/CIPP#1852
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mruiterHU on GitHub (May 13, 2025).
Original GitHub issue: https://github.com/KelvinTegelaar/CIPP/issues/4082
Please confirm:
Problem Statement
We currently have no way to standardize the default font settings (e.g., DefaultFontName and DefaultFontSize) for Outlook users via CIPP. At this time, this can only be done manually or per user using PowerShell. This becomes a problem when new users are added, they won’t receive the correct font settings unless the command is manually re-run for them. A “Standard” similar to the Sent Items Delegation would solve this by applying the configuration on a schedule.
Discord reference: https://discord.com/channels/905453405936447518/905925285902426112/1357704238427275536
As mentioned by user Rvdwegen: "Sounds like a standard" and others like DirkHX also expressed interest. So here is the formal request.
sponsering via: https://github.com/hypecipp
Benefits for MSPs
Value or Importance
This feature is important for branding and customer satisfaction. Many customers want a specific corporate font (e.g., Arial, size 11) set as default for all Outlook users. Without automation, this creates ongoing overhead for administrators. Implementing this as a Standard provides a reliable and scalable solution.
PowerShell Commands (Optional)
To configure a specific mailbox:
Set-MailboxMessageConfiguration <User> -DefaultFontName "Arial" -DefaultFontSize 11To apply this to all current mailboxes:
Get-Mailbox -ResultSize unlimited | Set-MailboxMessageConfiguration -DefaultFontName "Arial" -DefaultFontSize 11@KelvinTegelaar commented on GitHub (May 13, 2025):
The dev team discussed this, there's a couple of limits;
This would mean we'd have to run this for all mailboxes each time the standards run, becoming very costly and complex to track. That's why this is a no for now - But feel free to try again in a couple of months, Microsoft is improving the Graph/Exchange API rapidly currently so this might become easier to do.