Some programs only allows single running instance, Is there any way to generally break this in Windows for all programs? Am currently working with Windows Movie Maker and need to open multiple instances
Asked
Active
Viewed 4,749 times
0
-
1Which program are you talking about ? – clhy Jan 21 '16 at 02:14
-
Windows Movie Maker – Mohamed Gad Jan 21 '16 at 02:16
-
1you may be able to run an instance each under two different user acccounts. to try, create a second user, and set its password. On your desktop, run Movie Maker. Then find its launcher, and Shift + RClick it -> "Run as Differant User". Enter the username and password for your new user, and see if it runs. no way to tell it will work for sure with this app until you try. – Frank Thomas Jan 21 '16 at 03:26
1 Answers
3
No, because those programs typically check for running instances of themselves. It is not a windows feature.
Aganju
- 9,902
- 3
- 23
- 40
-
Second this. I've had multiple instances of programs open at once, no problems. Programs may enforce a single instance for various reasons--I've even run into one that enforces no more than 6 instances. (Poor man's batch processing since their own batch processing is bugged.) – Loren Pechtel Jan 21 '16 at 02:31
-
Right, I wrote an application where users opened multiple instances and messed up files because of multiple instances where they couldn't remember which one had the most current data, and their misuse of my application was somehow my fault. I now have the application check to see if it is already running when launched, and it brings up the existing application window and terminates the newly launched application. – Ron Maupin Jan 21 '16 at 03:04