Skip to content

Instantly share code, notes, and snippets.

View Me3yer's full-sized avatar

Me3yer

  • UK
View GitHub Profile
@Me3yer
Me3yer / delete_all_msmq_queues.ps1
Created February 25, 2020 15:02 — forked from vansickle/delete_all_msmq_queues.ps1
Delete all MSMQ queues
[void] [Reflection.Assembly]::LoadWithPartialName("System.Messaging")
[System.Messaging.MessageQueue]::GetPrivateQueuesByMachine("LOCALHOST") | % {".\" + $_.QueueName} | % {[System.Messaging.MessageQueue]::Delete($_); }
echo "All MSMQ queues deleted"