查看或配置 Outlook 网页版 Exchange Online 中的邮箱策略属性以及新的 Outlook for Windows

为 Outlook 网页版 和新的 Outlook for Windows 创建邮箱策略后,可以配置各种选项来控制Outlook 网页版 (以前称为 Outlook Web App) 和新的 Outlook for Windows 的用户可用的功能。 例如,您可以启用或禁用收件箱规则或创建允许的附件文件类型列表。

有关 Outlook 网页版 的邮箱策略和新的 Outlook for Windows 的详细信息,请参阅 Outlook 网页版 邮箱策略

开始前,有必要了解什么?

提示

是否有任何疑问? 在 Exchange 论坛中寻求帮助。 访问 Exchange OnlineExchange Online Protection 的论坛。

使用 EAC 查看或配置 Outlook 网页版 和新的 Outlook for Windows 的邮箱策略

  1. 在 EAC 中,转到“权限>Outlook Web App策略”,然后选择要查看或配置的策略。

  2. “详细信息”窗格显示策略中已启用的功能。 若要查看详细信息,请单击“编辑”“编辑”图标。 在打开的属性窗口中,可以查看和配置以下设置:

    • On the General tab, you can view and edit the name of the policy.

    • On the Features tab, use the check boxes to enable or disable features. By default, the most common features are displayed. To see all features that can be enabled or disabled, click More options.

      注意

      可以使用 PowerShell 中的 Set-CASMailbox cmdlet 为单个用户配置设置Exchange Online。

    • On the File Access tab, use the Direct file access check boxes to configure the file access and viewing options for users. File access lets a user open or view the contents of files attached to an email message.

    可根据用户是否已经登录公共或私人计算机来控制文件访问。 用户选择私人计算机访问或公共计算机访问的选项只有在您使用基于表单式身份验证时才可用。 所有其他形式的身份验证默认设置为私人计算机访问。

    • On the Offline access tab, use the option buttons to configure offline access availability.
  3. 完成后,单击“ 保存” 更新策略。

使用 Exchange Online PowerShell 修改 Outlook 网页版 和新的 Outlook for Windows 的邮箱策略

若要修改Outlook 网页版和新 Outlook for Windows 的邮箱策略,请使用以下语法:

Set-OwaMailboxPolicy -Identity "<Policy Name>" [Settings]

此示例在默认邮箱策略中启用日历访问。

Set-OwaMailboxPolicy -Identity Default -CalendarEnabled $true

有关详细语法和参数信息,请参阅 Set-OwaMailboxPolicy

使用 Exchange Online PowerShell 查看Outlook 网页版和新的 Outlook for Window 的邮箱策略

若要查看Outlook 网页版和新的 Outlook for Windows 的邮箱策略,请使用以下语法:

Get-OwaMailboxPolicy [-Identity "<Policy Name>"]

此示例返回组织中所有策略的摘要列表

Get-OwaMailboxPolicy | Format-Table Name

此示例检索名为 Executives 的策略的详细信息。

Get-OwaMailboxPolicy -Identity Executives

有关详细语法和参数信息,请参阅 Get-OwaMailboxPolicy

如何知道操作成功?

若要验证是否已成功修改Outlook 网页版邮箱策略,请执行以下步骤之一:

  • 在 EAC 中,单击“权限>Outlook Web App策略”,选择策略,单击“编辑”图标,然后验证策略的属性。

  • 在 Exchange Online PowerShell 中,将策略名称>替换为<策略名称,并运行以下命令来验证设置:

    Get-OwaMailboxPolicy -Identity "<Policy Name>"