Skip to content

Latest commit

 

History

History
77 lines (54 loc) · 2.15 KB

Resume-MsmqOutgoingQueue.md

File metadata and controls

77 lines (54 loc) · 2.15 KB
description external help file Module Name ms.date online version schema title
Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
Microsoft.Msmq.PowerShell.Commands.dll-Help.xml
MSMQ
12/27/2016
2.0.0
Resume-MsmqOutgoingQueue

Resume-MsmqOutgoingQueue

SYNOPSIS

Resumes outgoing queues.

SYNTAX

Resume-MsmqOutgoingQueue [-InputObject <OutgoingQueue[]>] [<CommonParameters>]

DESCRIPTION

The Resume-MsmqOutgoingQueue cmdlet resumes outgoing queues. Specify queues to resume by using MsmqOutgoingQueue objects. The cmdlet returns the resumed MsmqOutgoingQueue objects.

EXAMPLES

Example 1: Resume outgoing queues specified by name

PS C:\> Get-MsmqOutgoingQueue -Name "Order*" | Resume-MsmqOutgoingQueue

This command gets the outgoing queues have names that start with the string Order by using the Get-MsmqOutgoingQueue cmdlet. The command passes the results to the current cmdlet by using the pipeline operator. The current cmdlet resumes the queues.

PARAMETERS

-InputObject

Specifies an array of MsmqOutgoingQueue objects. This cmdlet resumes outgoing queues that this parameter specifies. This parameter accepts pipeline input.

Type: OutgoingQueue[]
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
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.

INPUTS

Microsoft.Msmq.PowerShell.Commands.OutgoingQueue[]

OUTPUTS

System.Object

NOTES

RELATED LINKS

Clear-MsmqOutgoingQueue

Get-MsmqOutgoingQueue

Suspend-MsmqOutgoingQueue