共用方式為


Set-ReportSubmissionPolicy

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

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

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

語法

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 Defender 入口網站https://security.microsoft.com/securitysettings/userSubmission中大部分的使用者提交設定。

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

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

  • 在 Outlook 中使用Microsoft報表工具Microsoft整合式報告:ReportJunkAddresses、ReportNotJunkAddresses 和 ReportPhishAddresses 參数。
  • Microsoft Outlook 中使用第三方工具的整合式報告: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

本範例會開啟 Outlook 中的報告、在 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

此範例會開啟 Outlook 中的報告、在 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

本範例會開啟 Outlook 中的報告、在 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

此範例會開啟 Outlook 中的報告,但使用 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整合式報告。 Microsoft Outlook 中的報告工具無法供使用者使用,且 Outlook 中第三方工具所報告的訊息無法在 Microsoft Defender 入口網站的 [提交] 頁面上使用。

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

參數

-Confirm

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

  • 破壞性的 Cmdlet (如 Remove-* cmdlets) 有內建暫停,它會先強迫您確認命令才會繼續作業。 對於這些 Cmdlet,您可以使用以下確切語法來略過確認提示:-Confirm:$false。
  • 其他大部分的 Cmdlet (如 New-* 和 Set-* cmdlets) 則沒有內建暫停。 在使用這些 Cmdlet 時,指定不含任何值的 Confirm 參數會引入強迫您認可命令後才繼續作業的暫停。
類型:SwitchParameter
別名:cf
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-DisableQuarantineReportingOption

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

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

只有 Outlook 中的報告才會啟用這個參數,如 EnableReportToMicrosoft 參數中所述。

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-DisableUserSubmissionOptions

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

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-EnableCustomizedMsg

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

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-EnableCustomNotificationSender

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

  • $true:使用自定義Microsoft 365 發件者電子郵件位址。
  • $false:使用預設寄件者電子郵件位址。 這是預設值。

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

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-EnableOrganizationBranding

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

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

只有在 Outlook 中的報告已針對 Outlook 中的Microsoft報表工具啟用時,這個參數才有意義,如 EnableReportToMicrosoft 參數中所述。

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-EnableReportToMicrosoft

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

此參數$true值可在 Outlook 中啟用報表。 您可以進行下列設定:

  • Microsoft報表工具可在 Outlook 中使用,讓使用者只在報表信箱未使用) (Microsoft:$false ReportJunkToCustomizedAddress、ReportNotJunkToCustomizedAddress 和 ReportPhishToCustomizedAddress 參數值。
  • Microsoft報表工具可在 Outlook 中使用,讓使用者向Microsoft報告郵件,並將報告信箱 (報告郵件傳送至指定的信箱) :$true ReportJunkToCustomizedAddress、ReportNotJunkToCustomizedAddress 和 ReportPhishToCustomizedAddress 參數值。 若要建立原則,請在 ReportJunkAddresses、ReportNotJunkAddresses 和 ReportPhisAddresses 參數中,以及在 New-ReportSubmissionRule 或 Set-ReportSubmissionRule Cmdlet 上的 SentTo 參數中使用相同的電子郵件位址。 這是預設組態。
  • 在 Outlook 中使用第三方載入巨集,讓用戶能夠向Microsoft和報表信箱報告:ReportJunkToCustomizedAddress、ReportNotJunkToCustomizedAddress 和 ReportPhishToCustomizedAddress 參數值$false。 EnableThirdPartyAddress 參數值$true。 若要建立原則,請在 ThirdPartyReportAddresses 參數中,以及在 New-ReportSubmissionRule 或 Set-ReportSubmissionRule Cmdlet 上的 SentTo 參數中使用相同的電子郵件位址。

此參數$false值會停用 Outlook 中的報告。 您可以進行下列設定:

  • Microsoft報表工具可在 Outlook 中使用,但報告的郵件只會傳送至報表信箱:$true ReportJunkToCustomizedAddress、ReportNotJunkToCustomizedAddress 和 ReportPhishToCustomizedAddress 參數值。 若要建立原則,請在 ReportJunkAddresses、ReportNotJunkAddresses 和 ReportPhisAddresses 參數中,以及在 New-ReportSubmissionRule 或 Set-ReportSubmissionRule Cmdlet 上的 SentTo 參數中使用相同的電子郵件位址。
  • Outlook 中的報告已停用。 Microsoft報表工具無法在 Outlook 中使用。 Microsoft Defender 入口網站的 [提交] 頁面上不會顯示使用者在 Outlook 中使用第三方報告工具報告的任何訊息:EnableThirdPartyAddress、ReportJunkToCustomizedAddress、ReportNotJunkToCustomizedAddress 和 ReportPhishToCustomizedAddress 參數值$false。
類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-EnableThirdPartyAddress

EnableThirdPartyAddress 參數會指定您是否在 Outlook 中使用第三方報告工具,而不是Microsoft工具將郵件傳送至 Exchange Online 中的報告信箱。 有效的值為 $true 或 $false。

$true值可讓Microsoft擷取傳送至第三方報告信箱的電子郵件相關信息。 您可以進行下列設定:

  • 報告的郵件只會傳送至報告信箱:Microsoft從由第三方工具傳送至 Exchange Online 報告信箱的郵件提取元數據。 Microsoft使用元數據填入 Microsoft Defender 入口網站中的提交頁面,並引發警示。 您也需要將 EnableReportToMicrosoft 參數值設定為 $false。 在 ThirdPartyReportAddresses 參數中,以及在 New-ReportSubmissionRule 或 Set-ReportSubmissionRule Cmdlet 上的 SentTo 參數中使用相同的電子郵件位址。
  • 報告的郵件會同時傳送至Microsoft和報告信箱:Microsoft由第三方工具從傳送至 Exchange Online 報告信箱的郵件提取元數據和郵件內容。 Microsoft使用元數據填入 Microsoft Defender 入口網站中的提交頁面,並引發警示。 電子郵件是用來產生提交的結果。 您也需要將 EnableReportToMicrosoft 參數值設定為 $true。 在 ThirdPartyReportAddresses 參數中,以及在 New-ReportSubmissionRule 或 Set-ReportSubmissionRule Cmdlet 上的 SentTo 參數中使用相同的電子郵件位址。

值$false表示不會使用 Outlook 中的第三方報告工具。

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-EnableUserEmailNotification

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

  • $true:會傳送自定義的系統管理員檢閱結果訊息。 當用戶回報的郵件只移至報告信箱時, (EnableReportToMicrosoft 參數的值$false) 时,就需要此值。
  • $false:不會傳送自定義的系統管理員檢閱結果訊息。

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

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

只有在 Outlook 中的報告已針對 Outlook 中的Microsoft報表工具啟用時,這個參數才有意義,如 EnableReportToMicrosoft 參數中所述。

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-Identity

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

類型:ReportSubmissionPolicyIdParameter
Position:0
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False
適用於:Exchange Online

-JunkReviewResultMessage

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

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

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

使用 NotificationSenderAddress 參數來自定義結果訊息的發件者電子郵件位址。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-NotificationFooterMessage

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

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

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-NotificationSenderAddress

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

只有在 Outlook 中的報告已針對 Outlook 中的Microsoft報表工具啟用時,這個參數才有意義,如 EnableReportToMicrosoft 參數中所述。

類型:MultiValuedProperty
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-NotificationsForCleanSubmissionAirInvestigationsEnabled

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

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-NotificationsForPhishMalwareSubmissionAirInvestigationsEnabled

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

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-NotificationsForSpamSubmissionAirInvestigationsEnabled

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

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-NotificationsForSubmissionAirInvestigationsEnabled

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

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-NotJunkReviewResultMessage

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

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

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

使用 NotificationSenderAddress 參數來自定義結果訊息的發件者電子郵件位址。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-OnlyShowPhishingDisclaimer

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

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PhishingReviewResultMessage

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

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

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

使用 NotificationSenderAddress 參數來自定義結果訊息的發件者電子郵件位址。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PostSubmitMessage

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

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

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PostSubmitMessageEnabled

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

  • $true:用戶在報告訊息之後,會在 Outlook 中收到快顯通知。 這是預設值。
  • $false:用戶回報訊息之後,不會在 Outlook 中收到快顯通知。
類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PostSubmitMessageForJunk

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PostSubmitMessageForNotJunk

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PostSubmitMessageForPhishing

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PostSubmitMessageTitle

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

您可以使用 PostSubmitMessage 參數指定自定義快顯消息正文。

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PostSubmitMessageTitleForJunk

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PostSubmitMessageTitleForNotJunk

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PostSubmitMessageTitleForPhishing

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PreSubmitMessage

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

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

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PreSubmitMessageEnabled

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

  • $true:用戶在報告訊息之前,會在 Outlook 中收到快顯通知。 這是預設值。
  • $false:用戶在報告訊息之前,不會在 Outlook 中收到快顯通知。
類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PreSubmitMessageForJunk

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PreSubmitMessageForNotJunk

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PreSubmitMessageForPhishing

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PreSubmitMessageTitle

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

您可以使用 PreSubmitMessage 參數來指定快顯消息正文。

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PreSubmitMessageTitleForJunk

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PreSubmitMessageTitleForNotJunk

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-PreSubmitMessageTitleForPhishing

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-ReportChatMessageEnabled

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

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-ReportChatMessageToCustomizedAddressEnabled

{{ 填入 ReportChatMessageToCustomizedAddressEnabled Description }}

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-ReportJunkAddresses

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

ReportJunkAddresses 參數會指定報表信箱的電子郵件位址,Exchange Online 使用 Outlook 中的Microsoft或第三方報告工具,在 Outlook 中接收用戶回報的郵件。

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

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

類型:MultiValuedProperty
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-ReportJunkToCustomizedAddress

ReportJunkToCustomizedAddress 參數會指定是否要使用Microsoft或第三方報告) 工具,將使用者回報的郵件從 Outlook (傳送至報告信箱,作為 Outlook 報告的一部分。 有效值為:

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

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

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-ReportNotJunkAddresses

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

ReportNotJunkAddresses 參數會指定報表信箱的電子郵件位址,Exchange Online 使用 Outlook 中的Microsoft或第三方報告工具,在 Outlook 中接收用戶回報的郵件。

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

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

類型:MultiValuedProperty
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-ReportNotJunkToCustomizedAddress

ReportNotJunkToCustomizedAddress 參數會指定是否要使用Microsoft或第三方報告工具,從 Outlook (傳送使用者回報的郵件,) 在 Outlook 中進行報告時傳送至報表信箱。 有效值為:

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

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

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-ReportPhishAddresses

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

ReportPhishAddresses 參數會指定報表信箱的電子郵件位址,Exchange Online 在 Outlook 中使用 Microsoft 或第三方報告工具,在 Outlook 中接收使用者回報的郵件。

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

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

類型:MultiValuedProperty
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-ReportPhishToCustomizedAddress

ReportPhishToCustomizedAddress 參數會指定是否要使用Microsoft或第三方報告工具,從 Outlook (傳送使用者回報的郵件,) 在 Outlook 中報告時傳送至報表信箱。 有效值為:

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

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

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-ThirdPartyReportAddresses

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

當您使用第三方產品進行使用者提交,而不是在 Outlook 中報告時,請使用 ThirdPartyReportAddresses 參數來指定報告信箱的電子郵件位址。

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

如需使用第三方報告工具搭配或不使用 Outlook 中報告來支援第三方產品的詳細資訊,請參閱 EnableThirdPartyAddress 參數。

類型:MultiValuedProperty
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-UserSubmissionOptions

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

類型:Int32
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-UserSubmissionOptionsMessage

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

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online

-WhatIf

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

類型:SwitchParameter
別名:wi
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False
適用於:Exchange Online