Queues
http://devcentral.f5.com/weblogs/Joe/archive/2009/01/14/powershell-abcs---q-is-for-queues.aspx
$q = New-Object System.Collections.Queue $q.Enqueue("one") $q.Enqueue("two") $q.Enqueue("three") $q one two three $q.Dequeue() one $q two three $q.Enqueue("four") $q two three four
WebSphere MQ
WebSphere MQ
Microsoft Message Queue MSMQ
Microsoft Message Queue MSMQ
http://rhysc.blogspot.com/2009/05/powershell-to-set-up-msmq-private.html
http://blog.geekpoet.net/2008/04/powershell-script-to-monitor-msmq.html
http://stackoverflow.com/questions/1309461/automated-msmq-setup-with-powershell