Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MSMQ Get All Private Queues

Tags:

c#-4.0

msmq

Is there any way to get all of the queues on MSMQ 5.0 using .NET 4.0? Cheers.

like image 894
Daniel Draper Avatar asked Jul 25 '10 11:07

Daniel Draper


People also ask

What is private queue in MSMQ?

Private queues are queues that are not published in Active Directory and are displayed only on the local computer that contains them.

What is Microsoft Message Queue Server?

Message Queuing (MSMQ) technology enables applications running at different times to communicate across heterogeneous networks and systems that may be temporarily offline. Applications send messages to queues and read messages from queues.

How do I uninstall MSMQ?

Open the Server Manager and click Remove Features to start the wizard. Clear the MSMQ check box. Click Next, and then click Remove. When prompted, click OK to restart the server.


1 Answers

MessageQueue.GetPrivateQueuesByMachine method

like image 196
Igal Serban Avatar answered Sep 23 '22 00:09

Igal Serban