[This topic is in progress.]

Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2

Topic Last Modified: 2011-09-12

Use the Test-ArchiveConnectivity cmdlet to verify archive functionality for a mailbox user.

Syntax

Test-ArchiveConnectivity -UserSmtp <SmtpAddress> [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]]

Detailed Description

Running the Test-ArchiveConnectivity cmdlet validates connectivity to a user’s archive mailbox. End-to-end verification includes testing whether an on-premises or cloud-based archive is provisioned for the on-premises mailbox user and whether it’s enabled and logging on to the archive mailbox on behalf of the user. Successful completion of the command indicates that processes such as the Managed Folder Assistant and Outlook Web App are able to successfully access the archive mailbox.

To test connectivity to a user’s archive mailbox in the user’s context, use the Test-OutlookConnectivity cmdlet with the Archive switch.

You need to be assigned permissions before you can run this cmdlet. Although all parameters for this cmdlet are listed in this topic, you may not have access to some parameters if they're not included in the permissions assigned to you. To see what permissions you need, see the "Archive connectivity" entry in the Mailbox Permissions topic.

Parameters

Parameter Required Type Description

UserSmtp

Required

Microsoft.Exchange.Data.SmtpAddress

The UserSmtp parameter specifies the SMTP address of the mailbox.

Confirm

Optional

System.Management.Automation.SwitchParameter

The Confirm switch causes the command to pause processing and requires you to acknowledge what the command will do before processing continues. You don't have to specify a value with the Confirm switch.

WhatIf

Optional

System.Management.Automation.SwitchParameter

The WhatIf switch instructs the command to simulate the actions that it would take on the object. By using the WhatIf switch, you can view what changes would occur without having to apply any of those changes. You don't have to specify a value with the WhatIf switch.

Input Types

To see the input types that this cmdlet accepts, see Cmdlet Input and Output Types. If the Input Type field for a cmdlet is blank, the cmdlet doesn’t accept input data.

Return Types

To see the return types, which are also known as output types, that this cmdlet accepts, see Cmdlet Input and Output Types. If the Output Type field is blank, the cmdlet doesn’t return data.

Errors

Error Description

 

Examples

EXAMPLE 1

This example tests archive connectivity to Gurinder Singh’s archive.

Copy Code
Test-ArchiveConnectivity -UserSmtp gsingh@contoso.com

EXAMPLE 2

This command retrieves mailboxes that have a cloud-based archive provisioned and tests archive connectivity for each mailbox.

Copy Code
Get-Mailbox -Filter {ArchiveGuid -ne $null -and ArchiveDomain -ne $null} -ResultSize Unlimited | Test-ArchiveConnectivity