-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Published main to live, Tuesday 10:30 AM PDT, 03/11 #12588
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
added limitation of cmdlet
…NotificationPolicy in the description
added bypass to weird licensing issue. Apparently, this is not meant to happen
When you do something like: $Temp = Search-MessageTrackingReport -Identity "Jane" -Recipients [email protected] -TraceLevel High You are storing several instances in the $Temp variable (which means $Temp is essentially a collection). When running this next command: Get-MessageTrackingReport -Identity $Temp.MessageTrackingReportID -ReportTemplate Summary -Status Delivered You're providing multiple MessageTrackingReportIds at once—but this particular cmdlet expects just one identity at a time. Hence, you receive an error saying PowerShell couldn't transform an ArrayList into an expected single identity. Solution: Handle this using a loop, iterating over each MessageTrackingReportId one-by-one. Here's an easy method: # Loop through each MessageTrackingReportId stored in $Temp and retrieve detailed tracking report summary foreach ($reportId in $Temp.MessageTrackingReportId) { Get-MessageTrackingReport -Identity $reportId -ReportTemplate Summary -Status Delivered }
Update Get-MessageTrackingReport.md
Updated Set-QuarantinePolicy.md
Update Set-AutoSensitivityLabelRule.md
Update Test-TextExtraction.md
Update New-ProtectionAlert.md
Update Set-AppRetentionCompliancePolicy.md
Learn Build status updates of commit fd48078: ✅ Validation status: passed
For more details, please refer to the build report. For any questions, please:
|
Update Set-AppRetentionCompliancePolicy.md
Learn Build status updates of commit 518a97a: ✅ Validation status: passed
For more details, please refer to the build report. For any questions, please:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.