Skip to content

Commit b35fdb0

Browse files
authored
Merge branch 'main' into patch-3
2 parents 96a32ee + 479dde2 commit b35fdb0

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

exchange/exchange-ps/exchange/Get-IPv6StatusForAcceptedDomain.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ If IPv6 is enabled for an accepted domain in Exchange Online, IPv4 and IPv6 addr
3434

3535
You need to be assigned permissions before you can run this cmdlet. Although this topic lists all parameters for the cmdlet, you may not have access to some parameters if they're not included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see [Find the permissions required to run any Exchange cmdlet](https://learn.microsoft.com/powershell/exchange/find-exchange-cmdlet-permissions).
3636

37+
> [!NOTE]
38+
> When you use the Enable-IPv6ForAcceptedDomain or Disable-IPv6ForAcceptedDomain cmdlets to update the IPv6 setting for an accepted domain, the updated status can take up to an hour to be visible using Get-IPv6StatusForAcceptedDomain due to caching.
39+
>
40+
> For example, Get-IPv6StatusForAcceptedDomain shows the status value Enabled for a domain. You run Disable-IPv6ForAcceptedDomain to disable IPv6 for the domain, you immediately run Get-IPv6StatusForAcceptedDomain to check the staus of the domain, and the command erroneously returns the value Enabled. It might take up to an hour before Get-IPv6StatusForAcceptedDomain shows the correct value Disabled for the domain.
41+
3742
## EXAMPLES
3843

3944
### Example 1
@@ -96,10 +101,7 @@ Accept wildcard characters: False
96101
### CommonParameters
97102
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/p/?LinkID=113216).
98103
99-
## INPUTS
100104
101-
## OUTPUTS
102105
103-
## NOTES
104106
105-
## RELATED LINKS
107+

exchange/exchange-ps/exchange/Set-ComplianceSecurityFilter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ $filterusers = Get-ComplianceSecurityFilter -FilterName "Ottawa Users Filter"
4343
4444
$filterusers.users.add("pilarp@contoso.com")
4545
46-
Set-ComplianceSecurityFilter -FilterName OttawaUsersFilter -Users $filterusers.users
46+
Set-ComplianceSecurityFilter -FilterName "Ottawa Users Filter" -Users $filterusers.users
4747
```
4848

4949
This example adds user pilarp@contoso.com to the compliance security filter named Ottawa Users Filter without affecting other users assigned to the filter.
@@ -54,7 +54,7 @@ $filterusers = Get-ComplianceSecurityFilter -FilterName "Ottawa Users Filter"
5454
5555
$filterusers.users.remove("annb@contoso.com")
5656
57-
Set-ComplianceSecurityFilter -FilterName OttawaUsersFilter -Users $filterusers.users
57+
Set-ComplianceSecurityFilter -FilterName "Ottawa Users Filter" -Users $filterusers.users
5858
```
5959

6060
This example removes user annb@contoso.com to the compliance security filter named Ottawa Users Filter without affecting other users assigned to the filter.

0 commit comments

Comments
 (0)