本文介绍了MSMQ命令行在win 7的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有MSMQ基本操作的cmd行(获取队列大小,清除队列)。
我试过google,但没有得到任何有用的。
Is there a cmd line for MSMQ basic operation (get the queue size, purge queue).I tried google it but did not get any think useful.
推荐答案
最简单和最好的方法是使用powershell,请查看
The simplest and the best way is to use powershell, take a look on PowerShell Community Extensions
您可以调用以下命令
Clear-MSMQueue
Get-MSMQueue
New-MSMQueue
Receive-MSMQueue
Send-MSMQueue
Test-MSMQueue
请参阅
See how to purge from cmd
这篇关于MSMQ命令行在win 7的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!