vote up 0 vote down star

Need to batch a weekly purge of the System queue journal.

flag

2 Answers

vote up 0 vote down
MessageQueue mq = new MessageQueue(".\\Journal$");
mq.Purge();

or

MessageQueue mq = new MessageQueue(".\\myQueue\\Journal$");
mq.Purge();

if its for a queue you created. Make sure the user has the correct permissions. See: http://msdn.microsoft.com/en-us/library/system.messaging.messagequeue.aspx

link|flag
vote up 0 vote down

Answerd here

MessageQueue mq = new MessageQueue("DIRECT=OS:computername\SYSTEM$;JOURNAL");
mq.Purge();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.