Hi,
You could try filtering by the state property using Where-Object.
Get-MsmqOutgoingQueue -Name "Order*" | Where-Object {($_.State -eq "MQ_QUEUE_STATE_NONACTIVE") -or ($_.State -eq "MQ_QUEUE_STATE_WAITING")} | Clear-MsmqOutgoingQueue
Best Regards,
Ian Xue
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.