Skip to content

Commit 9061da6

Browse files
committed
Merge branch 'main' into Viva-chrisda
2 parents b2cf31a + de7c2e7 commit 9061da6

File tree

4 files changed

+460
-9
lines changed

4 files changed

+460
-9
lines changed

exchange/exchange-ps/exchange/Get-ConnectionInformation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The output of the cmdlet contains the following properties:
4646
- Id: An integer that identifies the session in the PowerShell window. The first connection is 1, the second is 2, etc.
4747
- Name: A unique name that's based on the PowerShell environment and Id value. For example, ExchangeOnline_1 for Exchange Online PowerShell or ExchangeOnlineProtection_1 for Security & Compliance PowerShell.
4848
- UserPrincipalName: The account that was used to connect. For example, `laura@contoso.onmicrosoft.com`.
49-
- ConnectionUri: The connection endpoint that was used. For example, <https://outlook.office365.com> for Exchange Online PowerShell or <https://nam12b.ps.compliance.protection.outlook.com> for Security & Compliance PowerShell.
49+
- ConnectionUri: The connection endpoint that was used. For example, `https://outlook.office365.com` for Exchange Online PowerShell or `https://nam12b.ps.compliance.protection.outlook.com` for Security & Compliance PowerShell.
5050
- AzureAdAuthorizationEndpointUri : The Microsoft Entra authorization endpoint for the connection. For example, `https://login.microsoftonline.com/organizations` for Exchange Online PowerShell or `https://login.microsoftonline.com/organizations` for Security & Compliance PowerShell.
5151
- TokenExpiryTimeUTC: When the connection token expires. For example, 9/30/2023 6:42:24 PM +00:00.
5252
- CertificateAuthentication: Whether certificate based authentication (also known as CBA or app-only authentication) was used to connect. Values are True or False.

exchange/exchange-ps/exchange/Get-MessageTrackingLog.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,17 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
5959

6060
### Example 1
6161
```powershell
62-
Get-MessageTrackingLog -Server Mailbox01 -Start "03/13/2018 09:00:00" -End "03/15/2018 17:00:00" -Sender "john@contoso.com"
62+
Get-MessageTrackingLog -Server Mailbox01 -Start "03/13/2024 09:00:00" -End "03/15/2024 17:00:00" -Sender "john@contoso.com"
6363
```
6464

65-
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 john@contoso.com.
65+
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 john@contoso.com.
66+
67+
### Example 2
68+
```powershell
69+
Get-MessageTrackingLog -Server Mailbox01 -Start "03/13/2024 09:00:00" -Recipients @("john@contoso.com","alice@contoso.com")
70+
```
71+
72+
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 john@contoso.com and/or alice@contoso.com.
6673

6774
## PARAMETERS
6875

@@ -169,7 +176,7 @@ Accept wildcard characters: False
169176
```
170177
171178
### -Recipients
172-
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.
179+
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.
173180
174181
```yaml
175182
Type: String[]

teams/teams-ps/teams/Set-CsTeamsAIPolicy.md

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,40 @@ This cmdlet Set Teams AI policy value for current tenant.
1818
## SYNTAX
1919

2020
```
21-
Set-CsTeamsAIPolicy -Identity <string> -EnrollVoice <Enabled/Disabled>
21+
Set-CsTeamsAIPolicy
22+
[[-Identity] <string>]
23+
[-EnrollFace <Enabled/Disabled>]
24+
[-EnrollVoice <Enabled/Disabled>]
2225
```
2326

2427
## DESCRIPTION
2528

26-
This cmdlet sets the Teams AI policy EnrollFace and EnrollVoice value for the tenant. The values of EnrollFace and EnrollVoice can be set to "Enabled" or "Disabled"
29+
This cmdlet sets the Teams AI policy EnrollFace and EnrollVoice value for the tenant. The values of EnrollFace and EnrollVoice can be set to "Enabled" or "Disabled".
2730

2831
## EXAMPLES
2932

3033
### Example 1
3134
```powershell
35+
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollFace Enabled
36+
```
37+
38+
Set Teams AI policy "EnrollFace" value to "Enabled" for identity "Test".
39+
40+
### Example 2
41+
```powershell
42+
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Enabled
43+
```
44+
45+
Set Teams AI policy "EnrollVoice" value to "Enabled" for identity "Test".
46+
47+
### Example 3
48+
```powershell
3249
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollFace Disabled
3350
```
3451

3552
Set Teams AI policy "EnrollFace" value to "Disabled" for identity "Test".
3653

37-
### Example 2
54+
### Example 4
3855
```powershell
3956
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Disabled
4057
```
@@ -57,7 +74,7 @@ Accept pipeline input: False
5774
Accept wildcard characters: False
5875
```
5976
### -EnrollFace
60-
Policy value of the Teams AI EnrollFace policy.
77+
Policy value of the Teams AI EnrollFace policy. EnrollFace controls user access to user face enrollment in the Teams app settings.
6178
6279
```yaml
6380
Type: Boolean
@@ -72,7 +89,7 @@ Accept wildcard characters: False
7289
```
7390
7491
### -EnrollVoice
75-
Policy value of the Teams AI EnrollVoice policy.
92+
Policy value of the Teams AI EnrollVoice policy. EnrollVoice controls user access to user voice enrollment in the Teams app settings.
7693
7794
```yaml
7895
Type: Boolean

0 commit comments

Comments
 (0)