Skip to content
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
16 changes: 13 additions & 3 deletions exchange/exchange-ps/exchange/Get-IPv6StatusForAcceptedDomain.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,16 @@ If IPv6 is enabled for an accepted domain in Exchange Online, IPv4 and IPv6 addr
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).

> [!NOTE]
> 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.
>
> 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.
> - 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.
>
> 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 status 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.
>
> - If you receive the following error when running Get-Ipv6StatusForAcceptedDomain:
>
> WARNING: DNS record has unexpected value…..
>
> Explicitly enable or disable IPv6 using the Enable-Ipv6ForAcceptedDomain or Disable-Ipv6ForAcceptedDomain cmdlets.

## EXAMPLES

Expand Down Expand Up @@ -101,7 +108,10 @@ Accept wildcard characters: False
### CommonParameters
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).

## INPUTS

## OUTPUTS

## NOTES


## RELATED LINKS
10 changes: 5 additions & 5 deletions teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ Get-CsExportAcquiredPhoneNumberStatus -OrderId <String>
```

## DESCRIPTION
This cmdlet returns the status of the [Export-CsAcquiredPhoneNumber](Export-CsAcquiredPhoneNumber.md) operation. The response will include the download link to the file if operation has been completed.
This cmdlet returns OrderId status from the respective [Export-CsAcquiredPhoneNumber](Export-CsAcquiredPhoneNumber.md) operation. The response will include the download link to the file if operation has been completed.

By default, the download link will remain active for 1 hour.
By default, the download link will remain active for 1 hour.

## EXAMPLES

Expand All @@ -39,7 +39,7 @@ Id : 0e923e2c-ab0e-4b7a-be5a-906be8c
CreatedAt : 2024-08-29 21:50:54Z
status : Success
DownloadLinkExpiry : 2024-08-29 22:51:17Z
DownloadLinkExpiry : <link>
DownloadLink : <link>
```
This example displays the status of the export acquired phone numbers operation. The OrderId is the output from [Export-CsAcquiredPhoneNumber](Export-CsAcquiredPhoneNumber.md) cmdlet. The status contains the download link for the file along with expiry date.

Expand All @@ -52,7 +52,7 @@ Id : 0e923e2c-ab0e-4b7a-be5a-906be8c
CreatedAt : 2024-08-29 21:50:54Z
status : Success
DownloadLinkExpiry : 2024-08-29 22:51:17Z
DownloadLinkExpiry : <link>
DownloadLink : <link>
```
This example displays the status of the export acquired phone numbers operation with the use of a variable named "orderId".

Expand All @@ -66,7 +66,7 @@ Id : 0e923e2c-ab0e-4b7a-be5a-906be8c
CreatedAt : 2024-08-29 21:50:54Z
status : Success
DownloadLinkExpiry : 2024-08-29 22:51:17Z
DownloadLinkExpiry : <link>
DownloadLink : <link>
```
This example stores the [Get-CsExportAcquiredPhoneNumberStatus](Get-CsExportAcquiredPhoneNumberStatus.md) cmdlet status for the "orderId" in the variable "order". This will allow a quick view of the order status without typing the cmdlet again.

Expand Down