Skip to content

Instantly share code, notes, and snippets.

@jbogard
Last active December 13, 2015 18:09
Show Gist options
  • Save jbogard/4953697 to your computer and use it in GitHub Desktop.
Save jbogard/4953697 to your computer and use it in GitHub Desktop.
Delete all private queues
[Reflection.Assembly]::LoadWithPartialName("System.Messaging")
[System.Messaging.MessageQueue]::GetPrivateQueuesByMachine("localhost") | % { [System.Messaging.MessageQueue]::Delete($_.Path) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment