Click here to Skip to main content
16,005,236 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hi All,

How to set "S-1-5-32-554" or "Pre-Windows 2000 Compatible Access" group in msmq using C# code?

Thank in advance

Susanta
Posted

1 solution

You can use
C#
MessageQueue queue = MessageQueue.Create(/*Que name here*/);
queue.SetPermissions "Pre-Windows 2000 Compatible Access" , MessageQueueAccessRights.FullControl);
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900