Set-ReportSubmissionPolicy

此指令程式只能在雲端式服務中使用。

使用 Set-ReportSubmissionPolicy Cmdlet 來修改雲端式組織中的報表提交原則。

如需下方<語法>一節中參數集的詳細資訊,請參閱 Exchange Cmdlet 語法

Syntax

Set-ReportSubmissionPolicy
   [-Identity] <ReportSubmissionPolicyIdParameter>
   [-Confirm]
   [-DisableQuarantineReportingOption <Boolean>]
   [-DisableUserSubmissionOptions <Boolean>]
   [-EnableCustomizedMsg <Boolean>]
   [-EnableCustomNotificationSender <Boolean>]
   [-EnableOrganizationBranding <Boolean>]
   [-EnableReportToMicrosoft <Boolean>]
   [-EnableThirdPartyAddress <Boolean>]
   [-EnableUserEmailNotification <Boolean>]
   [-JunkReviewResultMessage <String>]
   [-NotJunkReviewResultMessage <String>]
   [-NotificationFooterMessage <String>]
   [-NotificationSenderAddress <MultiValuedProperty>]
   [-NotificationsForCleanSubmissionAirInvestigationsEnabled <Boolean>]
   [-NotificationsForPhishMalwareSubmissionAirInvestigationsEnabled <Boolean>]
   [-NotificationsForSpamSubmissionAirInvestigationsEnabled <Boolean>]
   [-NotificationsForSubmissionAirInvestigationsEnabled <Boolean>]
   [-OnlyShowPhishingDisclaimer <Boolean>]
   [-PhishingReviewResultMessage <String>]
   [-PostSubmitMessage <String>]
   [-PostSubmitMessageEnabled <Boolean>]
   [-PostSubmitMessageForJunk <String>]
   [-PostSubmitMessageForNotJunk <String>]
   [-PostSubmitMessageForPhishing <String>]
   [-PostSubmitMessageTitle <String>]
   [-PostSubmitMessageTitleForJunk <String>]
   [-PostSubmitMessageTitleForNotJunk <String>]
   [-PostSubmitMessageTitleForPhishing <String>]
   [-PreSubmitMessage <String>]
   [-PreSubmitMessageEnabled <Boolean>]
   [-PreSubmitMessageForJunk <String>]
   [-PreSubmitMessageForNotJunk <String>]
   [-PreSubmitMessageForPhishing <String>]
   [-PreSubmitMessageTitle <String>]
   [-PreSubmitMessageTitleForJunk <String>]
   [-PreSubmitMessageTitleForNotJunk <String>]
   [-PreSubmitMessageTitleForPhishing <String>]
   [-ReportChatMessageEnabled <Boolean>]
   [-ReportChatMessageToCustomizedAddressEnabled <Boolean>]
   [-ReportJunkAddresses <MultiValuedProperty>]
   [-ReportJunkToCustomizedAddress <Boolean>]
   [-ReportNotJunkAddresses <MultiValuedProperty>]
   [-ReportNotJunkToCustomizedAddress <Boolean>]
   [-ReportPhishAddresses <MultiValuedProperty>]
   [-ReportPhishToCustomizedAddress <Boolean>]
   [-ThirdPartyReportAddresses <MultiValuedProperty>]
   [-UserSubmissionOptions <Int32>]
   [-UserSubmissionOptionsMessage <String>]
   [-WhatIf]
   [<CommonParameters>]

Description

報表提交原則會控制 Microsoft 365 Defender 入口網站 https://security.microsoft.com/securitysettings/userSubmission 中大部分的使用者提交設定。

報表提交規則 (SentTo 參數 *-ReportSubmissionRule Cmdlet) 控制傳送使用者報告郵件之報告信箱的電子郵件地址。

當您在Microsoft 365 Defender入口網站中設定報告信箱的電子郵件地址時,也會在 *-ReportSubmissionPolicy Cmdlet 中的下列參數中設定相同的電子郵件地址:

  • 在 Outlook 中使用 Microsoft 報表工具的 Microsoft 整合式報告:ReportJunkAddresses、ReportNotJunkAddresses 和 ReportPhishAddresses 參數。
  • 在 Outlook 中使用協力廠商工具的 Microsoft 整合式報告:ThirdPartyReportAddresses 參數。

雖然並非絕對必要,但在 *-ReportSubmissionPolicy 和 *-ReportSubmissionRule Cmdlet 中的相關參數中,讓電子郵件地址保持一致是合理的。

您必須已獲指派權限,才能執行此指令程式。 雖然本主題已列出這個指令程式的所有參數,不過,如果某些參數並未包含在指派給您的權限中,您可能就無法存取這些參數。 若要尋找在組織中執行任何 Cmdlet 或參數所需的權限,請參閱 Find the permissions required to run any Exchange cmdlet

範例

範例 1

Set-ReportSubmissionPolicy -Identity DefaultReportSubmissionPolicy -EnableReportToMicrosoft $true -EnableThirdPartyAddress $false -ThirdPartyReportAddresses $null -ReportJunkToCustomizedAddress $false -ReportJunkAddresses $null -ReportNotJunkToCustomizedAddress $false -ReportNotJunkAddresses $null -ReportPhishToCustomizedAddress $false -ReportPhishAddresses $null

Get-ReportSubmissionRule | Remove-ReportSubmissionRule

此範例會開啟 Microsoft 整合式報告體驗、在 Outlook 中使用 Microsoft 報告工具,但只允許使用者向 Microsoft 報告訊息。 不使用報告信箱。

附註

  • 您可以使用此範例 (和其他範例) 不需考慮指定參數的現有值。 視您目前的組態而定,某些參數可能已經設定為必要的值,因此可能不需要。
  • 如果報表提交規則不存在 (Get-ReportSubmissionRule命令不會傳回任何輸出) ,您就不需要執行第二個命令來移除它。

範例 2

$usersub = "reportedmessages@contoso.com"

Set-ReportSubmissionPolicy -Identity DefaultReportSubmissionPolicy -EnableReportToMicrosoft $true -EnableThirdPartyAddress $false -ThirdPartyReportAddresses $null -ReportJunkToCustomizedAddress $true -ReportJunkAddresses $usersub -ReportNotJunkToCustomizedAddress $true -ReportNotJunkAddresses $usersub -ReportPhishToCustomizedAddress $true -ReportPhishAddresses $usersub

New-ReportSubmissionRule -Name DefaultReportSubmissionRule -ReportSubmissionPolicy DefaultReportSubmissionPolicy -SentTo $usersub

此範例會開啟 Microsoft 整合式報告體驗、在 Outlook 中使用 Microsoft 報告工具、允許使用者向 Microsoft 報告訊息,以及將報告的郵件傳送至指定的報告信箱。

根據您是否已經有報表提交規則,所需的第三個命令不同:

  • 如果您還沒有報表提交規則 (Get-ReportSubmissionRule Cmdlet 不會傳回任何) ,請執行New-ReportSubmissionRule命令,如所述。
  • 如果您已經有報表提交規則 (Get-ReportSubmissionRule Cmdlet 會傳回輸出) ,請改為執行下列命令: Set-ReportSubmissionRule -Name DefaultReportSubmissionRule -SentTo $usersub

範例 3

$usersub = "userreportedmessages@fabrikam.com"

Set-ReportSubmissionPolicy -Identity DefaultReportSubmissionPolicy -EnableReportToMicrosoft $false -EnableThirdPartyAddress $false -ThirdPartyReportAddresses $null -ReportJunkToCustomizedAddress $true -ReportJunkAddresses $usersub -ReportNotJunkToCustomizedAddress $true -ReportNotJunkAddresses $usersub -ReportPhishToCustomizedAddress $true -ReportPhishAddresses $usersub

New-ReportSubmissionRule -Name DefaultReportSubmissionRule -ReportSubmissionPolicy DefaultReportSubmissionPolicy -SentTo $usersub

本範例會開啟 Microsoft 整合式報告體驗、在 Outlook 中使用 Microsoft 報告工具,並將報告的郵件傳送至指定的報告信箱,只有 (使用者無法向 Microsoft) 報告訊息。

根據您是否已經有報表提交規則,所需的第三個命令不同:

  • 如果您還沒有報表提交規則 (Get-ReportSubmissionRule Cmdlet 不會傳回任何) ,請執行New-ReportSubmissionRule命令,如所述。
  • 如果您已經有報表提交規則 (Get-ReportSubmissionRule Cmdlet 會傳回輸出) ,請改為執行下列命令: Set-ReportSubmissionRule -Name DefaultReportSubmissionRule -SentTo $usersub

範例 4

$usersub = "thirdpartyreporting@wingtiptoys.com"

Set-ReportSubmissionPolicy -Identity DefaultReportSubmissionPolicy -EnableReportToMicrosoft $false -EnableThirdPartyAddress $true -ThirdPartyReportAddresses $usersub -ReportJunkToCustomizedAddress $false -ReportJunkAddresses $null -ReportNotJunkToCustomizedAddress $false -ReportNotJunkAddresses $null -ReportPhishToCustomizedAddress $false -ReportPhishAddresses $null

New-ReportSubmissionRule -Name DefaultReportSubmissionRule -ReportSubmissionPolicy DefaultReportSubmissionPolicy -SentTo $usersub

此範例會開啟 Microsoft 整合式報告體驗,但使用 Outlook 中的協力廠商報告工具,將報告的郵件傳送至Exchange Online中指定的報告信箱。

根據您是否已經有報表提交規則,所需的第三個命令不同:

  • 如果您還沒有報表提交規則 (Get-ReportSubmissionRule Cmdlet 不會傳回任何) ,請執行New-ReportSubmissionRule命令,如所述。
  • 如果您已經有報表提交規則 (Get-ReportSubmissionRule Cmdlet 會傳回輸出) ,請改為執行下列命令: Set-ReportSubmissionRule -Name DefaultReportSubmissionRule -SentTo $usersub

範例 5

Set-ReportSubmissionPolicy -Identity DefaultReportSubmissionPolicy -EnableReportToMicrosoft $false -EnableThirdPartyAddress $true -ThirdPartyReportAddresses $usersub -ReportJunkToCustomizedAddress $false -ReportJunkAddresses $null -ReportNotJunkToCustomizedAddress $false -ReportNotJunkAddresses $null -ReportPhishToCustomizedAddress $false -ReportPhishAddresses $null

Get-ReportSubmissionRule | Remove-ReportSubmissionRule

此範例會關閉 Microsoft 整合式報告。 Outlook 中的 Microsoft 報告工具不適用於使用者,而 Outlook 中協力廠商工具所報告的訊息無法在 Microsoft 365 Defender 入口網站的 [提交] 頁面上使用。

如果報表提交規則不存在 (Get-ReportSubmissionRule命令不會傳回任何輸出) ,您就不需要執行第二個命令來移除它。

參數

-Confirm

Confirm 參數會指定要顯示或隱藏確認提示。 這個參數對 Cmdlet 的影響取決於 Cmdlet 是否需要確認才能繼續作業。

  • 例如,具破壞性的 Cmdlet (例如 Remove-* Cmdlet) 內建暫停,可強制您在繼續之前確認命令。 對於這些 Cmdlet,您可以使用以下確切語法來略過確認提示:-Confirm:$false。
  • 其他大部分的 Cmdlet (例如,New-* 和 Set-* Cmdlet) 沒有內建暫停。 在使用這些 Cmdlet 時,指定不含任何值的 Confirm 參數會引入強迫您認可命令後才繼續作業的暫停。
Type:SwitchParameter
Aliases:cf
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-DisableQuarantineReportingOption

DisableQuarantineReportingOption 參數允許或防止使用者在隔離區中報告訊息。 有效值為:

  • $true:使用者無法從隔離區回報隔離的郵件。
  • $false:使用者可以從隔離區回報隔離的郵件。 這是預設值。

只有啟用 Microsoft 整合式報告體驗才有意義,如 EnableReportToMicrosoft 參數中所述。

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-DisableUserSubmissionOptions

將保留此參數供 Microsoft 內部使用。

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-EnableCustomizedMsg

將保留此參數供 Microsoft 內部使用。

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-EnableCustomNotificationSender

EnableCustomNotificationSender 參數會指定在系統管理員檢閱之後,自訂寄件者電子郵件地址是否用於結果訊息,並將回報的郵件標示為垃圾郵件,而不是垃圾郵件或網路釣魚。 有效值為:

  • $true:使用自訂 Microsoft 365 寄件者電子郵件地址。
  • $false:使用預設寄件者電子郵件地址。 這是預設值。

您可以使用 NotificationSenderAddress 參數來指定寄件者電子郵件地址。

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-EnableOrganizationBranding

EnableOrganizationBranding 參數會指定是否要在使用者在系統管理員檢閱後收到的結果訊息頁尾中顯示公司標誌,並將回報的郵件標示為垃圾郵件,而非垃圾郵件或網路釣魚。 有效值為:

  • $true:在頁尾文字中使用公司標誌,而不是 Microsoft 標誌。
  • $false:請勿在頁尾文字中使用公司標誌。 使用 Microsoft 標誌。

只有當 Outlook 中的 Microsoft 報表工具啟用 Microsoft 整合式報告體驗時,這個參數才有意義,如 EnableReportToMicrosoft 參數中所述。

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-EnableReportToMicrosoft

EnableReportToMicrosoft 參數會指定啟用或停用 Microsoft 整合式報告體驗。 有效的值為 $true 或 $false。

此參數$true值可啟用 Microsoft 整合式報告體驗。 您可以進行下列設定:

  • 只有在報表信箱未使用) (,使用者才能在 Outlook 中使用 Microsoft 報告工具:$false ReportJunkToCustomizedAddress、ReportNotJunkToCustomizedAddress 和 ReportPhishToCustomizedAddress 參數值。 這是預設結果。
  • 您可以在 Outlook 中使用 Microsoft 報告工具,讓使用者向 Microsoft 報告郵件,並將報告的郵件傳送至指定的報告信箱:ReportJunkToCustomizedAddress、ReportNotJunkToCustomizedAddress 和 ReportPhishToCustomizedAddress 參數值$true。 若要建立原則,請在 ReportJunkAddresses、ReportNotJunkAddresses 和 ReportPhisAddresses 參數中,以及在 New-ReportSubmissionRule 或 Set-ReportSubmissionRule Cmdlet 上的 SentTo 參數中使用相同的電子郵件地址。

此參數$false值會停用 Microsoft 整合式報告體驗。 您可以進行下列設定:

  • Microsoft 報告工具可在 Outlook 中使用,但報告的郵件只會傳送至報表信箱:ReportJunkToCustomizedAddress、ReportNotJunkToCustomizedAddress 和 ReportPhishToCustomizedAddress 參數值$true。 若要建立原則,請在 ReportJunkAddresses、ReportNotJunkAddresses 和 ReportPhisAddresses 參數中,以及在 New-ReportSubmissionRule 或 Set-ReportSubmissionRule Cmdlet 上的 SentTo 參數中使用相同的電子郵件地址。
  • Microsoft 整合式報告體驗已停用。 Outlook 中無法使用 Microsoft 報告工具。 使用者在 Outlook 中使用協力廠商報告工具報告的任何訊息,在 Microsoft 365 Defender 入口網站的 [提交] 頁面上都看不到:EnableThirdPartyAddress、ReportJunkToCustomizedAddress、ReportNotJunkToCustomizedAddress 和 ReportPhishToCustomizedAddress 參數值$false。
Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-EnableThirdPartyAddress

EnableThirdPartyAddress 參數會指定您是否在 Outlook 中使用協力廠商報告工具,而不是使用 Microsoft 工具將郵件傳送至Exchange Online中的報告信箱。 有效值為:

  • $true:已啟用 Microsoft 整合式報告體驗,但 Outlook 中的協力廠商工具會將報告的郵件傳送至 Exchange Online 中的報告信箱。 您也需要將 EnableReportToMicrosoft 參數值設定為 $false。 若要建立原則,請在 ThirdPartyReportAddresses 參數中,以及在 New-ReportSubmissionRule 或 Set-ReportSubmissionRule Cmdlet 上的 SentTo 參數中使用相同的電子郵件地址。
  • $false:不使用 Outlook 中的協力廠商報告工具。
Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-EnableUserEmailNotification

EnableUserEmailNotification 參數:使用者是否在系統管理員檢閱之後收到結果訊息,並將回報的郵件標示為垃圾郵件,而非垃圾郵件或網路釣魚。 有效值為:

  • $true:會傳送自訂的系統管理員檢閱結果訊息。
  • $false:不會傳送自訂的系統管理員檢閱結果訊息。

使用 JunkReviewResultMessage、NotJunkReviewResultMessage、PhishingReviewResultMessage 參數來設定用於每個決策的訊息本文文字。

針對用於垃圾郵件、非垃圾郵件和網路釣魚 () 之所有決策的頁尾,請使用 NotificationFooterMessage 參數。

只有當 Outlook 中的 Microsoft 報表工具啟用 Microsoft 整合式報告體驗時,這個參數才有意義,如 EnableReportToMicrosoft 參數中所述。

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-Identity

Identity 參數會指定您想要修改的報表提交原則。 唯一可用的原則名為 DefaultReportSubmissionPolicy。

Type:ReportSubmissionPolicyIdParameter
Position:0
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False
Applies to:Exchange Online

-JunkReviewResultMessage

JunkReviewResultMessage 參數會指定自訂文字,以在系統管理員檢閱之後用於結果訊息,並將報告的郵件標示為垃圾郵件。 如果值包含空格,請使用引號 (") 括住值。

只有當 EnableUserEmailNotification 參數的值$true且已針對 Outlook 中的 Microsoft 報表工具啟用 Microsoft 整合式報告體驗時,這個參數才有意義,如 EnableReportToMicrosoft 參數中所述。

使用 NotificationFooterMessage 參數來自訂結果訊息的頁尾文字。

使用 NotificationSenderAddress 參數來自訂結果訊息的寄件者電子郵件地址。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-NotificationFooterMessage

NotificationFooterMessage 參數會指定自訂頁尾文字,以在系統管理員檢閱後的電子郵件通知中使用,並將報告的郵件標示為垃圾郵件,而非垃圾郵件或網路釣魚。 如果值包含空格,請使用引號括住值。

您可以使用 EnableOrganizationBranding 參數,在訊息頁尾中包含您的公司標誌。

只有當 EnableUserEmailNotification 參數的值$true且已針對 Outlook 中的 Microsoft 報表工具啟用 Microsoft 整合式報告體驗時,這個參數才有意義,如 EnableReportToMicrosoft 參數中所述。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-NotificationSenderAddress

NotificationSenderAddress 參數會指定傳送者電子郵件地址,以在系統管理員檢閱之後用於結果訊息,並將回報的郵件標示為垃圾郵件,而非垃圾郵件或網路釣魚。 電子郵件地址必須位於Exchange Online中。

只有當 Outlook 中的 Microsoft 報表工具啟用 Microsoft 整合式報告體驗時,這個參數才有意義,如 EnableReportToMicrosoft 參數中所述。

Type:MultiValuedProperty
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-NotificationsForCleanSubmissionAirInvestigationsEnabled

將保留此參數供 Microsoft 內部使用。

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-NotificationsForPhishMalwareSubmissionAirInvestigationsEnabled

將保留此參數供 Microsoft 內部使用。

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-NotificationsForSpamSubmissionAirInvestigationsEnabled

將保留此參數供 Microsoft 內部使用。

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-NotificationsForSubmissionAirInvestigationsEnabled

將保留此參數供 Microsoft 內部使用。

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-NotJunkReviewResultMessage

NotJunkReviewResultMessage 參數會指定要在系統管理員檢閱之後用於結果訊息的自訂文字,並將報告的訊息標示為非垃圾郵件。 如果值包含空格,請使用引號 (") 括住值。

只有當 EnableUserEmailNotification 參數的值$true且已針對 Outlook 中的 Microsoft 報表工具啟用 Microsoft 整合式報告體驗時,這個參數才有意義,如 EnableReportToMicrosoft 參數中所述。

使用 NotificationFooterMessage 參數來自訂結果訊息的頁尾文字。

使用 NotificationSenderAddress 參數來自訂結果訊息的寄件者電子郵件地址。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-OnlyShowPhishingDisclaimer

將保留此參數供 Microsoft 內部使用。

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PhishingReviewResultMessage

PhishingReviewResultMessage 參數會指定要在系統管理員檢閱之後用於結果訊息的自訂文字,並將報告的訊息標示為網路釣魚。 如果值包含空格,請使用引號 (") 括住值。

只有當 EnableUserEmailNotification 參數的值$true且已針對 Outlook 中的 Microsoft 報表工具啟用 Microsoft 整合式報告體驗時,這個參數才有意義,如 EnableReportToMicrosoft 參數中所述。

使用 NotificationFooterMessage 參數來自訂結果訊息的頁尾文字。

使用 NotificationSenderAddress 參數來自訂結果訊息的寄件者電子郵件地址。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PostSubmitMessage

PostSubmitMessage 參數會指定自訂快顯郵件內文,以便在使用者報告訊息之後,于 Outlook 通知中使用。 如果值包含空格,請使用引號 (") 括住值。

您可以使用 PostSubmitMessageTitle 參數來指定自訂快顯訊息標題。

只有當 PostSubmitMessageEnabled 參數的值$true,而且已針對 Outlook 中的 Microsoft 報表工具啟用 Microsoft 整合式報告體驗時,這個參數才有意義,如 EnableReportToMicrosoft 參數中所述。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PostSubmitMessageEnabled

PostSubmitMessageEnabled 參數會啟用或停用使用者在使用 Microsoft 報告工具報告訊息之後看到的快顯 Outlook 通知。 有效值為:

  • $true:使用者在報告訊息之後,會在 Outlook 中收到快顯通知。 這是預設值。
  • $false:使用者回報訊息之後,不會在 Outlook 中收到快顯通知。
Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PostSubmitMessageForJunk

請勿使用此參數。 請改用 PostSubmitMessage 參數。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PostSubmitMessageForNotJunk

請勿使用此參數。 請改用 PostSubmitMessage 參數。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PostSubmitMessageForPhishing

請勿使用此參數。 請改用 PostSubmitMessage 參數。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PostSubmitMessageTitle

PostSubmitMessage 參數參數會指定自訂快顯訊息標題,以便在使用者報告訊息之後,于 Outlook 通知中使用。 如果值包含空格,請使用引號 (") 括住值。

您可以使用 PostSubmitMessage 參數指定自訂快顯郵件內文。

只有當 PostSubmitMessageEnabled 參數的值$true,而且已針對 Outlook 中的 Microsoft 報表工具啟用 Microsoft 整合式報告體驗時,這個參數才有意義,如 EnableReportToMicrosoft 參數中所述。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PostSubmitMessageTitleForJunk

請勿使用此參數。 請改用 PostSubmitMessageTitle 參數。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PostSubmitMessageTitleForNotJunk

請勿使用此參數。 請改用 PostSubmitMessageTitle 參數。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PostSubmitMessageTitleForPhishing

請勿使用此參數。 請改用 PostSubmitMessageTitle 參數。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PreSubmitMessage

PreSubmitMessage 參數會指定使用者報告訊息之前,Outlook 通知中要使用的自訂快顯郵件內文。 如果值包含空格,請使用引號 (") 括住值。

您可以使用 PreSubmitMessageTitle 參數指定自訂快顯訊息標題。

只有當 PreSubmitMessageEnabled 參數的值$true,且已針對 Outlook 中的 Microsoft 報表工具啟用 Microsoft 整合式報告體驗時,此參數才有意義,如 EnableReportToMicrosoft 參數中所述。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PreSubmitMessageEnabled

PreSubmitMessageEnabled 參數會啟用或停用使用者在使用 Microsoft 報告工具報告訊息之前看到的快顯 Outlook 通知。 有效值為:

  • $true:使用者在報告訊息之前,會在 Outlook 中收到快顯通知。 這是預設值。
  • $false:使用者回報訊息之前,不會在 Outlook 中收到快顯通知。
Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PreSubmitMessageForJunk

請勿使用此參數。 請改用 PreSubmitMessage 參數。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PreSubmitMessageForNotJunk

請勿使用此參數。 請改用 PreSubmitMessage 參數。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PreSubmitMessageForPhishing

請勿使用此參數。 請改用 PreSubmitMessage 參數。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PreSubmitMessageTitle

PreSubmitMessage 參數會指定自訂快顯訊息標題,以便在使用者回報訊息之前,于 Outlook 通知中使用。 如果值包含空格,請使用引號 (") 括住值。

您可以使用 PreSubmitMessage 參數來指定快顯郵件內文。

只有當 PreSubmitMessageEnabled 參數的值$true,且已針對 Outlook 中的 Microsoft 報表工具啟用 Microsoft 整合式報告體驗時,此參數才有意義,如 EnableReportToMicrosoft 參數中所述。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PreSubmitMessageTitleForJunk

請勿使用此參數。 請改用 PreSubmitMessageTitle 參數。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PreSubmitMessageTitleForNotJunk

請勿使用此參數。 請改用 PreSubmitMessageTitle 參數。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-PreSubmitMessageTitleForPhishing

請勿使用此參數。 請改用 PreSubmitMessageTitle 參數。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-ReportChatMessageEnabled

將保留此參數供 Microsoft 內部使用。

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-ReportChatMessageToCustomizedAddressEnabled

{{ 填入 ReportChatMessageToCustomizedAddressEnabled Description }}

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-ReportJunkAddresses

注意:您並非絕對需要使用此參數。 您可以使用 New-ReportSubmissionRule 或 Set-ReportSubmissionRule Cmdlet 上的 SentTo 參數來指定報告信箱的電子郵件地址。 若要減少混淆,請將此參數設定為相同的值。

ReportJunkAddresses 參數會指定報表信箱的電子郵件地址,Exchange Online使用 Microsoft 或 Outlook 中的協力廠商報告工具,在 Microsoft 整合式報告體驗中接收使用者回報的郵件。

如果您將 ReportJunkToCustomizedAddress 參數值變更為 $false,您應該為此參數設定$null (空白) 值。

您無法單獨使用此參數。 您必須為 ReportJunkAddresses、ReportNotJunkAddresses 和 ReportPhishAddresses 參數指定相同的值。

Type:MultiValuedProperty
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-ReportJunkToCustomizedAddress

ReportJunkToCustomizedAddress 參數會指定是否要使用 Microsoft 或協力廠商報告工具從 Outlook (傳送使用者回報的郵件,) 在 Microsoft 整合式報告體驗中傳送至報表信箱。 有效值為:

  • $true:使用者回報的郵件會傳送至報告信箱。
  • $false:使用者回報的郵件不會傳送至報告信箱。

您無法單獨使用此參數。 您必須在相同的命令中,為 ReportJunkToCustomizedAddress、ReportNotJunkToCustomizedAddress 和 ReportPhishToCustomizedAddress 參數指定相同的值。

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-ReportNotJunkAddresses

注意:您並非絕對需要使用此參數。 您可以使用 New-ReportSubmissionRule 或 Set-ReportSubmissionRule Cmdlet 上的 SentTo 參數來指定報告信箱的電子郵件地址。 若要減少混淆,請將此參數設定為相同的值。

ReportNotJunkAddresses 參數會指定報表信箱的電子郵件地址,Exchange Online使用 Microsoft 或 Outlook 中的協力廠商報告工具,在 Microsoft 整合式報告體驗中接收使用者回報的郵件。

如果您將 ReportNotJunkToCustomizedAddress 參數值變更為 $false,您應該為此參數設定$null (空白) 值。

您無法單獨使用此參數。 您必須為 ReportJunkAddresses、ReportNotJunkAddresses 和 ReportPhishAddresses 參數指定相同的值。

Type:MultiValuedProperty
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-ReportNotJunkToCustomizedAddress

ReportNotJunkToCustomizedAddress 參數會指定是否要使用 Microsoft 或協力廠商報告工具從 Outlook (傳送使用者回報的郵件,) 在 Microsoft 整合式報告體驗中傳送至報表信箱。 有效值為:

  • $true:使用者回報的郵件會傳送至報告信箱。
  • $false:使用者回報的郵件不會傳送至報告信箱。

您無法單獨使用此參數。 您必須為 ReportJunkToCustomizedAddress、ReportNotJunkToCustomizedAddress 和 ReportPhishToCustomizedAddress 參數指定相同的值。

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-ReportPhishAddresses

注意:您並非絕對需要使用此參數。 您可以使用 New-ReportSubmissionRule 或 Set-ReportSubmissionRule Cmdlet 上的 SentTo 參數來指定報告信箱的電子郵件地址。 若要減少混淆,請將此參數設定為相同的值。

ReportPhishAddresses 參數會指定報表信箱的電子郵件地址,Exchange Online使用 Microsoft 或 Outlook 中的協力廠商報告工具,在 Microsoft 整合式報告體驗中接收使用者回報的郵件。

如果您將 ReportPhishToCustomizedAddress 參數值變更為 $false,您應該為此參數設定$null (空白) 值。

您無法單獨使用此參數。 您必須為 ReportJunkAddresses、ReportNotJunkAddresses 和 ReportPhishAddresses 參數指定相同的值。

Type:MultiValuedProperty
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-ReportPhishToCustomizedAddress

ReportPhishToCustomizedAddress 參數會指定是否要使用 Microsoft 或協力廠商報告工具從 Outlook (傳送使用者回報的郵件,) 在 Microsoft 整合式報告體驗中傳送至報表信箱。 有效值為:

  • $true:使用者回報的郵件會傳送至報告信箱。
  • $false:使用者回報的郵件不會傳送至報告信箱。

您無法單獨使用此參數。 您必須為 ReportJunkToCustomizedAddress、ReportNotJunkToCustomizedAddress 和 ReportPhishToCustomizedAddress 參數指定相同的值。

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-ThirdPartyReportAddresses

注意:您並非絕對需要使用此參數。 您可以使用 New-ReportSubmissionRule 或 Set-ReportSubmissionRule Cmdlet 上的 SentTo 參數來指定報告信箱的電子郵件地址。 若要減少混淆,請將此參數設定為相同的值。

當您使用協力廠商產品進行使用者提交,而不是 Microsoft 整合式報告體驗時,請使用 ThirdPartyReportAddresses 參數來指定報告信箱的電子郵件地址。

如果您將 EnableThirdPartyAddress 參數值變更為 $false,您應該為此參數設定$null (空白) 值。

如需使用協力廠商報告工具搭配或不使用 Microsoft 整合式報告體驗來支援協力廠商產品的詳細資訊,請參閱 EnableThirdPartyAddress 參數。

Type:MultiValuedProperty
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-UserSubmissionOptions

將保留此參數供 Microsoft 內部使用。

Type:Int32
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-UserSubmissionOptionsMessage

將保留此參數供 Microsoft 內部使用。

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online

-WhatIf

WhatIf 參數會模擬命令的動作。 使用此參數時,您不需要實際套用變更即可檢視可能會發生的變更。 您不需要使用此參數指定值。

Type:SwitchParameter
Aliases:wi
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:Exchange Online