Skip to content

Publish main to live, 03/21/25, 3:30 PM PDT #12622

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 9 commits into from
Mar 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion exchange/exchange-ps/exchange/Resume-MoveRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ This example resumes any failed move requests.

### Example 3
```powershell
Get-MoveRequest -MoveStatus Suspended | Get-MoveRequestStatistics |Where {$_.Message -like "*resume after 10 P.M."} | Resume-MoveRequest
Get-MoveRequest -MoveStatus Suspended | Get-MoveRequestStatistics | Where {$_.Message -like "*resume after 10 P.M."} | Resume-MoveRequest
```

This example resumes any move requests that have the suspend comment "Resume after 10 P.M."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ This example resumes failed public folder move requests.

### Example 3
```powershell
Get-PublicFolderMoveRequest -MoveStatus Suspended | Get-PublicFolderMoveRequestStatistics |Where {$_.Message -like "*resume after 10 P.M."} | Resume-PublicFolderMoveRequest
Get-PublicFolderMoveRequest -MoveStatus Suspended | Get-PublicFolderMoveRequestStatistics | Where {$_.Message -like "*resume after 10 P.M."} | Resume-PublicFolderMoveRequest
```

This example resumes a move request that has the suspend comment "Resume after 10 P.M."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ A valid value is a JSON string. Refer to the Examples section for syntax and usa

For information about the inactive mailbox scenario, see [Learn about inactive mailboxes](https://learn.microsoft.com/purview/inactive-mailboxes-in-office-365).

**CAUTION**: This parameter uses the SMTP address of the deleted mailbox or mail user, which might also be specified for other mailboxes or mail users. If you use this parameter without first taking additional steps, other mailboxes and mail users with the same SMTP address in the retention policy will also be excluded. To check for additional mailboxes or mail users with the same SMTP address, use the following command and replace *user@example.com* with the SMTP address to check: `Get-Recipient -IncludeSoftDeletedRecipients user@contoso.com |Select-Object DisplayName, EmailAddresses, Description, Alias, RecipientTypeDetails, WhenSoftDeleted`
**CAUTION**: This parameter uses the SMTP address of the deleted mailbox or mail user, which might also be specified for other mailboxes or mail users. If you use this parameter without first taking additional steps, other mailboxes and mail users with the same SMTP address in the retention policy will also be excluded. To check for additional mailboxes or mail users with the same SMTP address, use the following command and replace `user@contoso.com` with the SMTP address to check: `Get-Recipient -IncludeSoftDeletedRecipients user@contoso.com | Select-Object DisplayName, EmailAddresses, Description, Alias, RecipientTypeDetails, WhenSoftDeleted`

To prevent active mailboxes or mail users with the same SMTP address from being excluded, put the mailbox on [Litigation Hold](https://learn.microsoft.com/purview/ediscovery-create-a-litigation-hold) before you run the command with the DeletedResources parameter.

Expand Down
54 changes: 43 additions & 11 deletions exchange/exchange-ps/exchange/Set-ContentFilterConfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,16 @@ This example makes the following modifications to the Content Filter agent confi

It enables and configures the SCL threshold functionalities that quarantine, reject and delete messages to 5, 6 and 8 respectively.

It specifies SpamQuarantineMailbox@contoso.com as the spam quarantine mailbox.
It specifies `SpamQuarantineMailbox@contoso.com` as the spam quarantine mailbox.

It defines two users for whom the Content Filter won't process messages.

## PARAMETERS

### -BypassedRecipients
The BypassedRecipients parameter specifies the SMTP address values of recipients in your organization. The Content Filter agent doesn't process any content filtering for messages bound to the addresses listed on this parameter. To enter multiple SMTP addresses, separate the addresses by using a comma, for example: recipient1@contoso.com,recipient2@contoso.com. The maximum number of recipients you can input is 100.
The BypassedRecipients parameter specifies the SMTP addresses of recipients who skip processing by the Content Filter agent.

You can specify multiple recipients separated by commas (for example, `"recipient1@contoso.com","recipient2@contoso.com"`). The maximum number of recipient entries is 100.

```yaml
Type: MultiValuedProperty
Expand All @@ -86,7 +88,9 @@ Accept wildcard characters: False
```

### -BypassedSenderDomains
The BypassedSenderDomains parameter specifies domain name values of sending domains. The Content Filter agent doesn't process any content filtering for messages received from the domains listed on this parameter. To enter multiple domains, separate the addresses by using a comma, for example: contoso.com, example.com. A wildcard character (\*) can be used to specify all subdomains, for example: \*.contoso.com. The maximum number of domains you can input is 100.
The BypassedSenderDomains parameter specifies the sender email address domains of senders who skip processing by the Content Filter agent.

You can specify multiple sender domains separated by commas (`"contoso.com","fabrikam.com"`). Use a wildcard character (\*) to specify a domain and all subdomains (for example: `*.contoso.com`). The maximum number of domain entries is 100.

```yaml
Type: MultiValuedProperty
Expand All @@ -102,7 +106,9 @@ Accept wildcard characters: False
```

### -BypassedSenders
The BypassedSenders parameter specifies the SMTP address values of senders. The Content Filter agent doesn't process any content filtering for messages received from the addresses listed on this parameter. To enter multiple SMTP addresses, separate the addresses by using a comma, for example: sender1@contoso.com, sender2@example.com. The maximum number of SMTP addresses you can input is 100.
The BypassedSenders parameter specifies the SMTP addresses of senders who skip processing by the Content Filter agent.

You can specify multiple senders separated by commas (for example, `"sender1@contoso.com","sender2@contoso.com"`). The maximum number of recipient entries is 100.

```yaml
Type: MultiValuedProperty
Expand Down Expand Up @@ -155,7 +161,10 @@ Accept wildcard characters: False
```

### -Enabled
The Enabled parameter enables or disables the Content Filter agent on the computer on which you're running the command. Valid input for the Enabled parameter is $true or $false. The default setting is $true.
The Enabled parameter enables or disables the Content Filter agent on the computer on which you're running the command. Valid values are:

- $true: The Content Filter agent is enabled. This is the default value.
- $false: The Content Filter agent is disabled.

```yaml
Type: Boolean
Expand All @@ -171,7 +180,10 @@ Accept wildcard characters: False
```

### -ExternalMailEnabled
The ExternalMailEnabled parameter specifies whether all messages from unauthenticated connections from sources external to your Exchange organization are passed through the Content Filter agent for processing. Valid input for the ExternalMailEnabled parameter is $true or $false. The default setting is $true. When the ExternalMailEnabled parameter is set to $true, all messages from unauthenticated connections are passed through the Content Filter agent for processing.
The ExternalMailEnabled parameter specifies whether all messages from unauthenticated connections from sources external to your Exchange organization are processed by the Content Filter agent. Valid values are:

- $true: Messages from unauthenticated connections are processed by the Content Filter agent. This is the default value.
- $false: Messages from unauthenticated connections aren't processed by the Content Filter agent.

```yaml
Type: Boolean
Expand All @@ -187,7 +199,10 @@ Accept wildcard characters: False
```

### -InternalMailEnabled
The InternalMailEnabled parameter specifies whether all messages from authenticated connections and from authoritative domains in your enterprise are passed through the Content Filter agent for processing. Valid input for the InternalMailEnabled parameter is $true or $false. The default setting is $false. When the InternalMailEnabled parameter is set to $true, all messages from authenticated connections and from authoritative domains in your enterprise are passed through the Content Filter agent for processing.
The InternalMailEnabled parameter specifies whether all messages from authenticated connections and from authoritative domains in your enterprise are processed by the Content Filter agent. Valid values are:

- $true: Messages from authenticated connections are processed by the Content Filter agent.
- $false: Messages from authenticated connections aren't processed by the Content Filter agent. This is the default value.

```yaml
Type: Boolean
Expand All @@ -203,7 +218,15 @@ Accept wildcard characters: False
```

### -OutlookEmailPostmarkValidationEnabled
The OutlookEmailPostmarkValidationEnabled parameter specifies whether the Content Filter agent sends a computational puzzle to the sender's system for processing. Valid input for the OutlookEmailPostmarkValidationEnabled parameter is $true or $false. When the OutlookEmailPostmarkValidationEnabled parameter is set to $true, the Content Filter agent sends a computational puzzle to the sender's system for processing. The results of the puzzle validation are factored into the overall spam confidence level (SCL). This functionality is exposed to the Microsoft Outlook user as Outlook E-mail Postmark validation. The default setting is $false.
The OutlookEmailPostmarkValidationEnabled parameter specifies whether Outlook Email Postmark validation is enabled.

- For outbound messages, the Content Filter agent applies a computational postmark header to help destination email systems distinguish legitimate email from spam.
- For inbound messages, the Content Filter agent looks for a computational postmark header in the message. The presence of a valid, solved computational postmark header indicates the client computer that generated the message solved the computational postmark, so the Content Filter agent is likely to lower the message's spam confidence level (SCL) rating.

Valid values are:

- $true: Outlook Email Postmark validation is enabled.
- $false: Outlook Email Postmark validation is disabled. This is the default value.

```yaml
Type: Boolean
Expand Down Expand Up @@ -251,7 +274,10 @@ Accept wildcard characters: False
```

### -SCLDeleteEnabled
The SCLDeleteEnabled parameter specifies whether all messages that meet or exceed the value set in the SCLDeleteThreshold parameter are deleted. Valid input for the SCLDeleteEnabled parameter is $true or $false. The default setting is $false. When the SCLDeleteEnabled parameter is set to $true, all messages that meet or exceed the value set in the SCLDeleteThreshold parameter are deleted.
The SCLDeleteEnabled parameter specifies whether all messages that meet or exceed the value set in the SCLDeleteThreshold parameter are deleted. Valid values are:

- $true: Messages that meet or exceed the value set in the SCLDeleteThreshold parameter are deleted.
- $false: Messages aren't deleted. This is the default value.

```yaml
Type: Boolean
Expand Down Expand Up @@ -283,7 +309,10 @@ Accept wildcard characters: False
```

### -SCLQuarantineEnabled
The SCLQuarantineEnabled parameter specifies whether all messages that meet or exceed the value set in the SCLQuarantineThreshold parameter are sent to the spam quarantine mailbox specified in the QuarantineMailbox parameter. Valid input for the SCLQuarantineEnabled parameter is $true or $false. The default setting is $false. When the SCLQuarantineEnabled parameter is set to $true, all messages that meet or exceed the value set in the SCLQuarantineThreshold parameter are sent to the spam quarantine mailbox specified in the QuarantineMailbox parameter.
The SCLQuarantineEnabled parameter specifies whether all messages that meet or exceed the value set in the SCLQuarantineThreshold parameter are sent to the spam quarantine mailbox specified in the QuarantineMailbox parameter. Valid values are:

- $true: Messages that meet or exceed the value set in the SCLQuarantineThreshold parameter are sent to the spam quarantine mailbox specified in the QuarantineMailbox parameter.
- $false: Messages aren't quarantined. This is the default value.

```yaml
Type: Boolean
Expand Down Expand Up @@ -315,7 +344,10 @@ Accept wildcard characters: False
```

### -SCLRejectEnabled
The SCLRejectEnabled parameter specifies whether all messages that meet or exceed the value set in the SCLRejectThreshold parameter are rejected, and an NDR is sent to the sender. Valid input for the SCLRejectEnabled parameter is $true or $false. The default setting is $false. When SCLRejectEnabled parameter is set to $true, all messages that meet or exceed the value set in the SCLRejectThreshold parameter are rejected, and an NDR is sent to the sender.
The SCLRejectEnabled parameter specifies whether all messages that meet or exceed the value set in the SCLRejectThreshold parameter are rejected in an NDR to the sender. Valid values are:

- $true: Messages that meet or exceed the value set in the SCLRejectThreshold parameter are rejected in an NDR is to the sender.
- $false: Messages aren't rejected. This is the default value.

```yaml
Type: Boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ The DeletedResources parameter specifies the deleted Microsoft 365 Group, mailbo

A valid value is a JSON string. Refer to the Examples section for syntax and usage examples of this parameter.

**CAUTION**: When you use a SMTP address with this parameter, be aware that the same address might also be in use for other mailboxes or mail users. To check for additional mailboxes or mail users with the same SMTP address, use the following command and replace *user@example.com* with the SMTP address to check: `Get-Recipient -IncludeSoftDeletedRecipients user@contoso.com |Select-Object DisplayName, EmailAddresses, Description, Alias, RecipientTypeDetails, WhenSoftDeleted`
**CAUTION**: When you use a SMTP address with this parameter, be aware that the same address might also be in use for other mailboxes or mail users. To check for additional mailboxes or mail users with the same SMTP address, use the following command and replace `user@contoso.com` with the SMTP address to check: `Get-Recipient -IncludeSoftDeletedRecipients user@contoso.com | Select-Object DisplayName, EmailAddresses, Description, Alias, RecipientTypeDetails, WhenSoftDeleted`

To prevent active mailboxes or mail users with the same SMTP address from being excluded, put the mailbox on [Litigation Hold](https://learn.microsoft.com/purview/ediscovery-create-a-litigation-hold) before you run the command with the DeletedResources parameter.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ Accept wildcard characters: False
```

### -Credentials
The Credentials parameter specifies the username and password for an account that can access mailboxes on the target server. Specify the username in the domain\\username format or the user principal name (UPN) (user@example.com) format.
The Credentials parameter specifies the username and password for an account that can access mailboxes on the target server. Specify the username in the domain\\username format or the user principal name (UPN) format (for example, `user@contoso.com`).

A value for this parameter requires the Get-Credential cmdlet. To pause this command and receive a prompt for credentials, use the value `(Get-Credential)`. Or, before you run this command, store the credentials in a variable (for example, `$cred = Get-Credential`) and then use the variable name (`$cred`) for this parameter. For more information, see [Get-Credential](https://learn.microsoft.com/powershell/module/microsoft.powershell.security/get-credential).

Expand Down
20 changes: 4 additions & 16 deletions teams/teams-ps/teams/Get-CsPhoneNumberAssignment.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,29 +126,17 @@ This example returns information about all phone numbers that contain the digits

### Example 8
```powershell
(Get-CsPhoneNumberAssignment | Where-Object {$_.NumberType.Contains('CallingPlan') -and $_.Capability.Contains('UserAssignment') -and ($_.PstnAssignmentStatus.Contains('UserAssigned') -or $_.PstnAssignmentStatus.Contains('Unassigned'))}).Count
```
This example returns the number of Calling Plan subscriber phone numbers that are either assigned or not assigned to users.

### Example 9
```powershell
Get-CsPhoneNumberAssignment -Top (50::500)
```
This example returns all phone numbers in the record between sequence 50 to 500. This parameter can be used to get upto a maximum 1000 results at a time.

### Example 10
```powershell
Get-CsPhoneNumberAssignment -Skip 1000 -Top 1000
```
This example returns all phone numbers sequenced between 1001 to 2000 in the record of phone numbers.

### Example 11
### Example 9
```powershell
Get-CsPhoneNumberAssignment -AssignedPstnTargetId 'TeamsSharedCallingRoutingPolicy|Tag:SC1'
```
This example returns all phone numbers assigned as emergency numbers in the Teams shared calling routing policy instance SC1.

### Example 12
### Example 10
```powershell
Get-CsPhoneNumberAssignment -TelephoneNumber "+12065551000;ext=524"
```
Expand Down Expand Up @@ -176,7 +164,7 @@ ReverseNumberLookup : {SkipInternalVoip}
```
This example displays when SkipInternalVoip option is turned on for a number.

### Example 13
### Example 11
```powershell
Get-CsPhoneNumberAssignment -Filter "TelephoneNumber -eq '+12065551000'"
```
Expand Down Expand Up @@ -204,7 +192,7 @@ ReverseNumberLookup : {}
```
This example shows a way to use -Filter parameter to display information of a specific number.

### Example 14
### Example 12
```powershell
Get-CsPhoneNumberAssignment -Filter "TelephoneNumber -like '+12065551000' -and NumberType -eq 'DirectRouting'"
```
Expand Down
3 changes: 0 additions & 3 deletions teams/teams-ps/teams/Set-CsTeamsMeetingPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,6 @@ Accept wildcard characters: False

Determines whether anonymous users are allowed to dial out to a PSTN number. Set this to TRUE to allow anonymous users to dial out. Set this to FALSE to prohibit anonymous users from dialing out.

> [!NOTE]
> This parameter is temporarily disabled.

```yaml
Type: Boolean
Parameter Sets: (All)
Expand Down