From 734b291e411d568be2a5001cafbef86207b0182d Mon Sep 17 00:00:00 2001 From: pavellatif <142821210+pavellatif@users.noreply.github.com> Date: Thu, 29 Aug 2024 18:42:44 -0400 Subject: [PATCH 01/10] Updating Export-CsAcquiredPhoneNumber and Get-CsExportAcquiredPhoneNumberStatus with examples --- .../teams/Export-CsAcquiredPhoneNumber.md | 21 ++++++++++++++++--- .../Get-CsExportAcquiredPhoneNumberStatus.md | 14 ++++++++++++- 2 files changed, 31 insertions(+), 4 deletions(-) diff --git a/teams/teams-ps/teams/Export-CsAcquiredPhoneNumber.md b/teams/teams-ps/teams/Export-CsAcquiredPhoneNumber.md index c4b2576788..e815aa6dc6 100644 --- a/teams/teams-ps/teams/Export-CsAcquiredPhoneNumber.md +++ b/teams/teams-ps/teams/Export-CsAcquiredPhoneNumber.md @@ -64,18 +64,33 @@ By default, this cmdlet returns all the phone numbers acquired by the tenant wit Export-CsAcquiredPhoneNumber ``` ```output -OrderId : 0e923e2c-ab0e-4b7a-be5a-906be8c +0e923e2c-ab0e-4b7a-be5a-906be8c ``` -This example displays the OrderId of the export acquired phone numbers operation. The OrderId can be used to get the download link for the file. +This example displays the output of the export acquired phone numbers operation. The OrderId shown as the output string and can be used to get the download link for the file. ### Example 2 ```powershell Export-CsAcquiredPhoneNumber -Property "TelephoneNumber, NumberType, AssignmentStatus" ``` ```output +0e923e2c-ab0e-6h8c-be5a-906be8c +``` +This example displays the output of the export acquired phone numbers operation with filtered properties. This file will only contain the properties indicated. + +### Example 3 +```powershell +$orderId = Export-CsAcquiredPhoneNumber +``` +This example displays the use of variable "orderId" for the export acquired phone numbers operation. The OrderId string will be stored in the variable named "oderId" and no output will be shown for the cmdlet. + +### Example 4 +```powershell +Export-CsAcquiredPhoneNumber -Property "TelephoneNumber, NumberType, AssignmentStatus" +``` +```output OrderId : 0e923e2c-ab0e-6h8c-be5a-906be8c ``` -This example displays the OrderId of the export acquired phone numbers operation. This file will only contain the properties indicated. +This example displays the use of variable "orderId" for the export acquired phone numbers operation with filtered properties. The OrderId string will be stored in the variable named "oderId" and no output will be shown for the cmdlet. ## PARAMETERS diff --git a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md index dbf42921db..24188b6eaf 100644 --- a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md +++ b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md @@ -34,8 +34,20 @@ By Default the download link will remain active for 1 hour. ```powershell Get-CsExportAcquiredPhoneNumberStatus -OrderId 0e923e2c-ab0e-4b7a-be5a-906be8c ``` +This example displays the status of the export acquired phone numbers operation. The OrderId is the output from [Export-CsAcquiredPhoneNumber] cmdlet. The status contains the download link for the file along with expiry date. -This example displays the OrderId of the export acquired phone numbers operation. The OrderId can be used to get the download link for the file. +### Example 2 +```powershell +Get-CsExportAcquiredPhoneNumberStatus -OrderId $orderId +``` +This example displays the status of the export acquired phone numbers operation with the use of variable named "orderId". + +### Example 3 +```powershell +$order = Get-CsExportAcquiredPhoneNumberStatus -OrderId $orderId +``` + +This example stores the [Get-CsExportAcquiredPhoneNumberStatus] cmdlet status for the "oderId" in variable "oder". This will allow quick view of the order status without typing the cmdlet again. ## PARAMETERS From ee30accb7a5f2ee9c30ed1a88013ad1a8f59512d Mon Sep 17 00:00:00 2001 From: pavellatif <142821210+pavellatif@users.noreply.github.com> Date: Thu, 29 Aug 2024 18:52:08 -0400 Subject: [PATCH 02/10] Adding examples for Get-CsExportAcquiredPhoneNumberStatus --- .../teams/Get-CsExportAcquiredPhoneNumberStatus.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md index 24188b6eaf..0e3389e378 100644 --- a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md +++ b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md @@ -34,6 +34,13 @@ By Default the download link will remain active for 1 hour. ```powershell Get-CsExportAcquiredPhoneNumberStatus -OrderId 0e923e2c-ab0e-4b7a-be5a-906be8c ``` +```output +Id : 0e923e2c-ab0e-4b7a-be5a-906be8c +CreatedAt : 2024-08-29 21:50:54Z +status : Success +DownloadLinkExpiry : 2024-08-29 22:51:17Z +DownloadLinkExpiry : +``` This example displays the status of the export acquired phone numbers operation. The OrderId is the output from [Export-CsAcquiredPhoneNumber] cmdlet. The status contains the download link for the file along with expiry date. ### Example 2 From 4acc2660068a89930f036bcc0b9467a8f6db1b08 Mon Sep 17 00:00:00 2001 From: Pavel Latif <142821210+pavellatif@users.noreply.github.com> Date: Thu, 29 Aug 2024 18:53:36 -0400 Subject: [PATCH 03/10] Update Get-CsExportAcquiredPhoneNumberStatus.md --- .../teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md index 0e3389e378..6169e55fa6 100644 --- a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md +++ b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md @@ -35,9 +35,9 @@ By Default the download link will remain active for 1 hour. Get-CsExportAcquiredPhoneNumberStatus -OrderId 0e923e2c-ab0e-4b7a-be5a-906be8c ``` ```output -Id : 0e923e2c-ab0e-4b7a-be5a-906be8c -CreatedAt : 2024-08-29 21:50:54Z -status : Success +Id : 0e923e2c-ab0e-4b7a-be5a-906be8c +CreatedAt : 2024-08-29 21:50:54Z +status : Success DownloadLinkExpiry : 2024-08-29 22:51:17Z DownloadLinkExpiry : ``` From e23d7f5753b09cda15c0534f6ff7668cf05beea1 Mon Sep 17 00:00:00 2001 From: Pavel Latif <142821210+pavellatif@users.noreply.github.com> Date: Thu, 29 Aug 2024 18:57:24 -0400 Subject: [PATCH 04/10] Update Get-CsExportAcquiredPhoneNumberStatus.md --- .../teams/Get-CsExportAcquiredPhoneNumberStatus.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md index 6169e55fa6..63c4bd9d52 100644 --- a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md +++ b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md @@ -35,11 +35,11 @@ By Default the download link will remain active for 1 hour. Get-CsExportAcquiredPhoneNumberStatus -OrderId 0e923e2c-ab0e-4b7a-be5a-906be8c ``` ```output -Id : 0e923e2c-ab0e-4b7a-be5a-906be8c -CreatedAt : 2024-08-29 21:50:54Z -status : Success -DownloadLinkExpiry : 2024-08-29 22:51:17Z -DownloadLinkExpiry : +Id : 0e923e2c-ab0e-4b7a-be5a-906be8c +CreatedAt : 2024-08-29 21:50:54Z +status : Success +DownloadLinkExpiry : 2024-08-29 22:51:17Z +DownloadLinkExpiry : ``` This example displays the status of the export acquired phone numbers operation. The OrderId is the output from [Export-CsAcquiredPhoneNumber] cmdlet. The status contains the download link for the file along with expiry date. From 9779bb054d855b985290bd7369754911779348da Mon Sep 17 00:00:00 2001 From: pavellatif <142821210+pavellatif@users.noreply.github.com> Date: Thu, 29 Aug 2024 19:06:17 -0400 Subject: [PATCH 05/10] Updating examples for Export-CsAcquiredPhoneNumber --- .../teams/Export-CsAcquiredPhoneNumber.md | 8 +++---- .../Get-CsExportAcquiredPhoneNumberStatus.md | 22 +++++++++++++++---- 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/teams/teams-ps/teams/Export-CsAcquiredPhoneNumber.md b/teams/teams-ps/teams/Export-CsAcquiredPhoneNumber.md index e815aa6dc6..74d0bed449 100644 --- a/teams/teams-ps/teams/Export-CsAcquiredPhoneNumber.md +++ b/teams/teams-ps/teams/Export-CsAcquiredPhoneNumber.md @@ -61,7 +61,7 @@ By default, this cmdlet returns all the phone numbers acquired by the tenant wit ### Example 1 ```powershell -Export-CsAcquiredPhoneNumber +PS C:\> Export-CsAcquiredPhoneNumber ``` ```output 0e923e2c-ab0e-4b7a-be5a-906be8c @@ -70,7 +70,7 @@ This example displays the output of the export acquired phone numbers operation. ### Example 2 ```powershell -Export-CsAcquiredPhoneNumber -Property "TelephoneNumber, NumberType, AssignmentStatus" +PS C:\> Export-CsAcquiredPhoneNumber -Property "TelephoneNumber, NumberType, AssignmentStatus" ``` ```output 0e923e2c-ab0e-6h8c-be5a-906be8c @@ -79,13 +79,13 @@ This example displays the output of the export acquired phone numbers operation ### Example 3 ```powershell -$orderId = Export-CsAcquiredPhoneNumber +PS C:\> $orderId = Export-CsAcquiredPhoneNumber ``` This example displays the use of variable "orderId" for the export acquired phone numbers operation. The OrderId string will be stored in the variable named "oderId" and no output will be shown for the cmdlet. ### Example 4 ```powershell -Export-CsAcquiredPhoneNumber -Property "TelephoneNumber, NumberType, AssignmentStatus" +PS C:\> Export-CsAcquiredPhoneNumber -Property "TelephoneNumber, NumberType, AssignmentStatus" ``` ```output OrderId : 0e923e2c-ab0e-6h8c-be5a-906be8c diff --git a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md index 63c4bd9d52..42f751662e 100644 --- a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md +++ b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md @@ -32,7 +32,7 @@ By Default the download link will remain active for 1 hour. ### Example 1 ```powershell -Get-CsExportAcquiredPhoneNumberStatus -OrderId 0e923e2c-ab0e-4b7a-be5a-906be8c +PS C:\> Get-CsExportAcquiredPhoneNumberStatus -OrderId 0e923e2c-ab0e-4b7a-be5a-906be8c ``` ```output Id : 0e923e2c-ab0e-4b7a-be5a-906be8c @@ -45,15 +45,29 @@ This example displays the status of the export acquired phone numbers operation. ### Example 2 ```powershell -Get-CsExportAcquiredPhoneNumberStatus -OrderId $orderId +PS C:\> Get-CsExportAcquiredPhoneNumberStatus -OrderId $orderId +``` +```output +Id : 0e923e2c-ab0e-4b7a-be5a-906be8c +CreatedAt : 2024-08-29 21:50:54Z +status : Success +DownloadLinkExpiry : 2024-08-29 22:51:17Z +DownloadLinkExpiry : ``` This example displays the status of the export acquired phone numbers operation with the use of variable named "orderId". ### Example 3 ```powershell -$order = Get-CsExportAcquiredPhoneNumberStatus -OrderId $orderId +PS C:\> $order = Get-CsExportAcquiredPhoneNumberStatus -OrderId $orderId +PS C:\> $order +``` +```output +Id : 0e923e2c-ab0e-4b7a-be5a-906be8c +CreatedAt : 2024-08-29 21:50:54Z +status : Success +DownloadLinkExpiry : 2024-08-29 22:51:17Z +DownloadLinkExpiry : ``` - This example stores the [Get-CsExportAcquiredPhoneNumberStatus] cmdlet status for the "oderId" in variable "oder". This will allow quick view of the order status without typing the cmdlet again. ## PARAMETERS From b0a057b9e525f12237c5a4a56239849531ae28e3 Mon Sep 17 00:00:00 2001 From: pavellatif <142821210+pavellatif@users.noreply.github.com> Date: Thu, 29 Aug 2024 19:13:31 -0400 Subject: [PATCH 06/10] Update Get-CsExportAcquiredPhoneNumberStatus.md --- .../teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md index 42f751662e..0501f1ec04 100644 --- a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md +++ b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md @@ -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 : +DownloadLinkExpiry : ``` This example displays the status of the export acquired phone numbers operation. The OrderId is the output from [Export-CsAcquiredPhoneNumber] cmdlet. The status contains the download link for the file along with expiry date. @@ -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 : +DownloadLinkExpiry : ``` This example displays the status of the export acquired phone numbers operation with the use of variable named "orderId". @@ -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 : +DownloadLinkExpiry : ``` This example stores the [Get-CsExportAcquiredPhoneNumberStatus] cmdlet status for the "oderId" in variable "oder". This will allow quick view of the order status without typing the cmdlet again. From cb214fde9431d9a20885964394728027ae41bab5 Mon Sep 17 00:00:00 2001 From: Mary-Katherine Bond Sims Date: Tue, 3 Sep 2024 11:27:52 -0400 Subject: [PATCH 07/10] Update Export-CsAcquiredPhoneNumber.md Fixed typos --- teams/teams-ps/teams/Export-CsAcquiredPhoneNumber.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teams/teams-ps/teams/Export-CsAcquiredPhoneNumber.md b/teams/teams-ps/teams/Export-CsAcquiredPhoneNumber.md index 74d0bed449..88d7d03b96 100644 --- a/teams/teams-ps/teams/Export-CsAcquiredPhoneNumber.md +++ b/teams/teams-ps/teams/Export-CsAcquiredPhoneNumber.md @@ -81,7 +81,7 @@ This example displays the output of the export acquired phone numbers operation ```powershell PS C:\> $orderId = Export-CsAcquiredPhoneNumber ``` -This example displays the use of variable "orderId" for the export acquired phone numbers operation. The OrderId string will be stored in the variable named "oderId" and no output will be shown for the cmdlet. +This example displays the use of variable "orderId" for the export acquired phone numbers operation. The OrderId string will be stored in the variable named "orderId" and no output will be shown for the cmdlet. ### Example 4 ```powershell @@ -90,7 +90,7 @@ PS C:\> Export-CsAcquiredPhoneNumber -Property "TelephoneNumber, NumberType, Ass ```output OrderId : 0e923e2c-ab0e-6h8c-be5a-906be8c ``` -This example displays the use of variable "orderId" for the export acquired phone numbers operation with filtered properties. The OrderId string will be stored in the variable named "oderId" and no output will be shown for the cmdlet. +This example displays the use of variable "orderId" for the export acquired phone numbers operation with filtered properties. The OrderId string will be stored in the variable named "orderId" and no output will be shown for the cmdlet. ## PARAMETERS From 5cb21fbec84e93d5c9f65d1f7d742bcd31fa2bd7 Mon Sep 17 00:00:00 2001 From: Mary-Katherine Bond Sims Date: Tue, 3 Sep 2024 13:57:37 -0400 Subject: [PATCH 08/10] Update Get-CsExportAcquiredPhoneNumberStatus.md Corrected various references of Get-CsExportAcquiredPhoneNumberStatus cmdlet --- .../teams/Get-CsExportAcquiredPhoneNumberStatus.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md index 0501f1ec04..7e7be0f3b8 100644 --- a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md +++ b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md @@ -14,7 +14,7 @@ schema: 2.0.0 # Get-CsExportAcquiredPhoneNumberStatus ## SYNOPSIS -This cmdlet shows the status of the Export-CsAcquiredPhoneNumber cmdlet. +This cmdlet shows the status of the Get-CsExportAcquiredPhoneNumberStatus cmdlet. ## SYNTAX @@ -24,9 +24,9 @@ Get-CsExportAcquiredPhoneNumberStatus -OrderId ``` ## 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 the status of the [Get-CsExportAcquiredPhoneNumberStatus](Get-CsExportAcquiredPhoneNumberStatus.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 @@ -41,7 +41,7 @@ status : Success DownloadLinkExpiry : 2024-08-29 22:51:17Z DownloadLinkExpiry : ``` -This example displays the status of the export acquired phone numbers operation. The OrderId is the output from [Export-CsAcquiredPhoneNumber] cmdlet. The status contains the download link for the file along with expiry date. +This example displays the status of the export acquired phone numbers operation. The OrderId is the output from [Get-CsExportAcquiredPhoneNumberStatus] cmdlet. The status contains the download link for the file along with expiry date. ### Example 2 ```powershell @@ -54,7 +54,7 @@ status : Success DownloadLinkExpiry : 2024-08-29 22:51:17Z DownloadLinkExpiry : ``` -This example displays the status of the export acquired phone numbers operation with the use of variable named "orderId". +This example displays the status of the export acquired phone numbers operation with the use of a variable named "orderId". ### Example 3 ```powershell @@ -68,7 +68,7 @@ status : Success DownloadLinkExpiry : 2024-08-29 22:51:17Z DownloadLinkExpiry : ``` -This example stores the [Get-CsExportAcquiredPhoneNumberStatus] cmdlet status for the "oderId" in variable "oder". This will allow quick view of the order status without typing the cmdlet again. +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. ## PARAMETERS From 1d1cfd05dc1aa7fc3e12a80047fb8bb3bca06386 Mon Sep 17 00:00:00 2001 From: Mary-Katherine Bond Sims Date: Tue, 3 Sep 2024 14:04:50 -0400 Subject: [PATCH 09/10] Update Get-CsExportAcquiredPhoneNumberStatus.md Reverted mistaken changes re Export-CsAcquiredPhoneNumber cmdlet --- teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md index 7e7be0f3b8..2583acd994 100644 --- a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md +++ b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md @@ -24,7 +24,7 @@ Get-CsExportAcquiredPhoneNumberStatus -OrderId ``` ## DESCRIPTION -This cmdlet returns the status of the [Get-CsExportAcquiredPhoneNumberStatus](Get-CsExportAcquiredPhoneNumberStatus.md) operation. The response will include the download link to the file if operation has been completed. +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. By default, the download link will remain active for 1 hour. @@ -41,7 +41,7 @@ status : Success DownloadLinkExpiry : 2024-08-29 22:51:17Z DownloadLinkExpiry : ``` -This example displays the status of the export acquired phone numbers operation. The OrderId is the output from [Get-CsExportAcquiredPhoneNumberStatus] cmdlet. The status contains the download link for the file along with expiry date. +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. ### Example 2 ```powershell From fc0a6f8dc429a9998fc4bfaf66237609c4312eac Mon Sep 17 00:00:00 2001 From: Mary-Katherine Bond Sims Date: Tue, 3 Sep 2024 14:12:58 -0400 Subject: [PATCH 10/10] Update Get-CsExportAcquiredPhoneNumberStatus.md Correction of cmdlet --- teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md index 2583acd994..a0d22ec174 100644 --- a/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md +++ b/teams/teams-ps/teams/Get-CsExportAcquiredPhoneNumberStatus.md @@ -14,7 +14,7 @@ schema: 2.0.0 # Get-CsExportAcquiredPhoneNumberStatus ## SYNOPSIS -This cmdlet shows the status of the Get-CsExportAcquiredPhoneNumberStatus cmdlet. +This cmdlet shows the status of the [Export-CsAcquiredPhoneNumber](Export-CsAcquiredPhoneNumber.md) cmdlet. ## SYNTAX