Skip to content

Published main to live, Wednesday 10:30 AM PDT, 09/25 #12127

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 24 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
6028208
updates documentation for Add-VivaModuleFeaturePolicy and Update-Viva…
v-jimchang Aug 14, 2024
91d0c78
Update Add-VivaModuleFeaturePolicy.md
v-jimchang Aug 14, 2024
ba3d190
Update Update-VivaModuleFeaturePolicy.md
v-jimchang Aug 14, 2024
a63b95f
Update Add-VivaModuleFeaturePolicy.md
chrisda Aug 14, 2024
773f18f
Update Update-VivaModuleFeaturePolicy.md
chrisda Aug 14, 2024
54cf28a
Merge pull request #12074 from v-jimchang/v-jimchang/policyScopePower…
chrisda Aug 14, 2024
42baa17
Merge branch 'main' into Viva-chrisda
chrisda Aug 14, 2024
9ebf094
Merge branch 'main' into Viva-chrisda
chrisda Sep 9, 2024
e202c6a
Update Set-CsTeamsMeetingPolicy.md
michbrown-png Sep 25, 2024
ca5b1b2
Update Get-MessageTrackingLog, fix -Recipients wrong description for …
raomin Sep 25, 2024
0b1ba22
Pencil edit
padmagit77 Sep 25, 2024
3db3df1
Merge pull request #12123 from michbrown-png/updatesetteamsmeetingpolicy
padmagit77 Sep 25, 2024
77fdc92
Merge branch 'main' into patch-1
raomin Sep 25, 2024
f4cbcf5
Update Get-MessageTrackingLog.md
chrisda Sep 25, 2024
7d68be8
Update Get-MessageTrackingLog.md
chrisda Sep 25, 2024
de7c2e7
Merge pull request #12124 from raomin/patch-1
chrisda Sep 25, 2024
5af2775
Update Set-CsTeamsMessagingPolicy.md
michbrown-png Sep 25, 2024
b2cf31a
Merge branch 'main' into Viva-chrisda
chrisda Sep 25, 2024
9061da6
Merge branch 'main' into Viva-chrisda
chrisda Sep 25, 2024
ee5d814
Merge branch 'main' into updatesetteamsmessagingpolicy
padmagit77 Sep 25, 2024
3e31f37
Merge pull request #12126 from MicrosoftDocs/Viva-chrisda
chrisda Sep 25, 2024
afa0d41
Pencil edit
padmagit77 Sep 25, 2024
acf72ea
Merge branch 'main' into updatesetteamsmessagingpolicy
padmagit77 Sep 25, 2024
5f500bc
Merge pull request #12125 from michbrown-png/updatesetteamsmessagingp…
padmagit77 Sep 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Use the Add-VivaModuleFeaturePolicy cmdlet to add a new access policy for a spec
- Policies assigned to a specific user or group take priority over the policy assigned to the entire tenant when determining whether a feature/category is enabled. If a user has multiple policies assigned for a feature/category (directly as a user or member of a group), the most restrictive policy applies.
- If a category is disabled by category policies, all features under the category are disabled regardless of the policies set at the feature level.
- You can only update user controls at the feature policy level, not the category policy level.
- Some features only support policies that apply to the entire tenant, not specific users or groups. You can refer to supported policy scopes for a feature using the [Get-VivaModuleFeature](https://learn.microsoft.com/powershell/module/exchange/get-vivamodulefeature) cmdlet.

Some features include the option for user controls (user opt out). Refer to the feature documentation to see if user controls are available for the feature that you intend to set a policy for.

Expand Down
13 changes: 10 additions & 3 deletions exchange/exchange-ps/exchange/Get-MessageTrackingLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,17 @@ You need to be assigned permissions before you can run this cmdlet. Although thi

### Example 1
```powershell
Get-MessageTrackingLog -Server Mailbox01 -Start "03/13/2018 09:00:00" -End "03/15/2018 17:00:00" -Sender "[email protected]"
Get-MessageTrackingLog -Server Mailbox01 -Start "03/13/2024 09:00:00" -End "03/15/2024 17:00:00" -Sender "[email protected]"
```

This example searches the message tracking logs on the Mailbox server named Mailbox01 for information about all messages sent from March 13, 2018, 09:00 to March 15, 2018, 17:00 by the sender [email protected].
This example searches the message tracking logs on the Mailbox server named Mailbox01 for information about all messages sent from March 13, 2024, 09:00 to March 15, 2024, 17:00 by the sender [email protected].

### Example 2
```powershell
Get-MessageTrackingLog -Server Mailbox01 -Start "03/13/2024 09:00:00" -Recipients @("[email protected]","[email protected]")
```

This example searches the message tracking logs on the Mailbox server named Mailbox01 for information about all messages sent from March 13, 2024, 09:00 to today for the recipients [email protected] and/or [email protected].

## PARAMETERS

Expand Down Expand Up @@ -169,7 +176,7 @@ Accept wildcard characters: False
```

### -Recipients
The Recipients parameter filters the message tracking log entries by the SMTP email address of the message recipients. Multiple recipients in a single message are logged in a single message tracking log entry. Unexpanded distribution group recipients are logged by using the group's SMTP email address. You can specify multiple recipient email addresses separated by commas.
The Recipients parameter filters the message tracking log entries by the SMTP email address of the message recipients. Multiple recipients in a single message are logged in a single message tracking log entry. Unexpanded distribution group recipients are logged by using the group's SMTP email address. You can specify multiple recipients using an array of email addresses.

```yaml
Type: String[]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Use the Update-VivaModuleFeaturePolicy cmdlet to update an access policy for a f
- You can't update a policy for a particular user or group to include the entire tenant if a policy for the entire tenant already exists for the feature. Only one tenant-wide policy is supported.
- Policies assigned to a specific user or group take priority over the policy assigned to the entire tenant when determining whether a feature/category is enabled. If a user has multiple policies assigned for a feature/category (directly as a user or member of a group), the most restrictive policy applies.
- You can only update user controls at the feature policy level, not the category policy level.
- Some features only support policies that apply to the entire tenant, not specific users or groups. You can refer to supported policy scopes for a feature using the [Get-VivaModuleFeature](https://learn.microsoft.com/powershell/module/exchange/get-vivamodulefeature) cmdlet.

Some features include the option for user controls (user opt out). Refer to the feature documentation to see if user controls are available for the feature that you intend to set a policy for.

Expand Down
Loading