I\'ve been successfully creating a .net mutex like this:
SingleIns = new Mutex(true, AppName);
for a while. It works in XP, Vista, but apparently not in Windows7. So I nee
In case it might help you, the .NET Framework already provides a wrapper of the Win32 mutex object. See System.Threading.Mutex. All of the major functionality is there, including the ability to use prefixes like "Global\".