Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2
Topic Last Modified: 2011-05-06
Use the Resume-Message cmdlet to enable delivery of a previously suspended message in a queue on a computer that has the Hub Transport server role or the Edge Transport server role installed.
Syntax
Resume-Message -Identity <MessageIdentity>
[-Confirm [<SwitchParameter>]] [-WhatIf
[<SwitchParameter>]]
|
Resume-Message -Filter <String> [-Confirm
[<SwitchParameter>]] [-Server <ServerIdParameter>]
[-WhatIf [<SwitchParameter>]]
|
Detailed Description
A message being sent to multiple recipients might be located in multiple queues. If you specify an Identity parameter, the message is resumed in a single queue if that identity matches only a single message. If the identity matches more than one message, you receive an error. To resume a message in more than one queue in a single operation, you must use the Filter parameter.
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 "Queues" entry in the Transport Permissions topic.
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
Filter |
Required |
System.String |
The Filter parameter requires an expression that specifies the property value criteria for the messages that you want to resume. The expression includes a property name followed by a comparison operator and value. The following message properties are valid criteria for the Filter parameter:
You can specify multiple filter criteria by using the and comparison operator. Property values that aren't expressed as a single integer must be enclosed in quotation marks ("). |
Identity |
Required |
Microsoft.Exchange.Data.QueueViewer.MessageIdentity |
The Identity parameter specifies the MessageIdentity integer. This is an integer that represents a particular message, and an optional server and queue identity. The syntax for this parameter is as follows:
|
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. |
Server |
Optional |
Microsoft.Exchange.Configuration.Tasks.ServerIdParameter |
The Server parameter specifies the name of the server to connect to by using the remote procedure call (RPC) that contains the queues that hold the messages that you want to resume. Enter the Server parameter as a host name or a fully qualified domain name (FQDN). If this parameter isn't used, the local server is queried. |
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.
Examples
EXAMPLE 1
This example resumes delivery of all messages in a suspended state and for which the following conditions are true:
- The messages were sent by the sender Kweku@contoso.com.
- The messages are queued on the server Server1.
- The messages will expire before 15:00 on January 5, 2010.
Copy Code | |
---|---|
Resume-Message -Server Server1 -Filter {FromAddress -eq "Kweku@contoso.com" -and ExpirationTime -lt "1/5/2010 3:00 PM"} |