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);
The hardcoded ‘Everyone’ string only works on English OSes, how do we change this line so it works in all languages?
Google is being helpful today:
Looks like this will help
This code solves this problem:
VB: