vote up 1 vote down star

Oh no, media browser is crashing.

Turns out we have an issue with the way we are creating a mutex. The problem line is:

MutexAccessRule rule = new MutexAccessRule("Everyone", MutexRights.FullControl, AccessControlType.Allow);

Turns out the hardcoded "Everyone" string only works on english OSs, how do we change this line so it works in all languages

flag

1 Answer

vote up 5 vote down check

Google is being helpful today:

Looks like this will help

This code solves this problem:

  SecurityIdentifier sid = new SecurityIdentifier(WellKnownSidType.WorldSid, null);
  MutexAccessRule rule = new MutexAccessRule(sid, MutexRights.FullControl, AccessControlType.Allow);
link|flag

Your Answer

Get an OpenID
or

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