gpt4 book ai didi

azure - 修改 PowerShell 脚本以更改 Outlook 的默认字体类型和大小

转载 作者:行者123 更新时间:2023-12-03 02:47:20 25 4
gpt4 key购买 nike

我们在环境中使用 Azure Intune,我尝试通过 Intune 使用 PowerShell 命令将“新邮件”和“回复或转发邮件”的默认字体更改为 Arial 11。

这可以通过 PowerShell 完成吗?

我们使用的是 Outlook 365,因此没有许可服务器/交换,并且我们使用 Windows 10 Pro。

最佳答案

正如 Matthew 提到的,您可以使用 Set-MailboxMessageConfiguration PS 命令来完成此操作。我已经在我这边进行了测试,它对我有用:

enter image description here enter image description here

尝试以下命令:

$UserCredential = Get-Credential

$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection

Import-PSSession $Session -DisableNameChecking

Set-MailboxMessageConfiguration <account you want to config> -DefaultFontName Arial -DefaultFontSize 11

关于azure - 修改 PowerShell 脚本以更改 Outlook 的默认字体类型和大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58182253/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com