Reading the MSMQ transcational dead letter queue - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T13:05:33Z http://stackoverflow.com/feeds/question/278524 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/278524/reading-the-msmq-transcational-dead-letter-queue 0 Reading the MSMQ transcational dead letter queue Guy 2008-11-10T17:15:13Z 2008-11-10T19:56:54Z <p>I'm trying to read the transactional deal letter queue in MSMQ using C#.NET and am getting "A workgroup installation computer does not support the operation"</p> <p>For 10 Stack Overflow points, what am I doing wrong? </p> http://stackoverflow.com/questions/278524/reading-the-msmq-transcational-dead-letter-queue/278619#278619 0 Answer by tomasr for Reading the MSMQ transcational dead letter queue tomasr 2008-11-10T17:44:52Z 2008-11-10T17:44:52Z <p>You're probably referencing the queue using the wrong kind of FormatName or path. What does yours look like? </p> http://stackoverflow.com/questions/278524/reading-the-msmq-transcational-dead-letter-queue/278968#278968 1 Answer by tomasr for Reading the MSMQ transcational dead letter queue tomasr 2008-11-10T19:56:54Z 2008-11-10T19:56:54Z <p>Try this formatname instead and see if it works:</p> <pre><code>@"FORMATNAME:DIRECT=OS:.\SYSTEM$;DeadXact" </code></pre>