I currently am able to close a mutex handle by using the following code:
DuplicateHandle(process, mutex, GetCurrentProcess(), 0, 0, 0, 1);
CloseHandle(mutex);
This enables me to run multiple instances of a program. However I need to reinstate this handle after I've launched multiple instances.
Is there any way to temporarily rename or disable a mutex handle?