是否有用于MSMQ基本操作的cmd行(获取队列大小,清除队列)。
我尝试谷歌它,但没有得到任何认为有用的。

最佳答案

最简单,最好的方法是使用Powershell,请查看PowerShell Community Extensions

您将可以调用以下命令

Clear-MSMQueue
Get-MSMQueue
New-MSMQueue
Receive-MSMQueue
Send-MSMQueue
Test-MSMQueue


how to purge from cmd

07-25 20:38