My application has to do some stuff, but first it must know that all web browsers on the computer are shut down (not running).
How can I determine if they are currently running or not? I guess there is no common way for all of them, but the solution for all versions of that web browsers will be just fine:
- Internet Explorer
- Mozilla Firefox
- Google Chrome
Of course, after that check, I can show MessageBox
"Please close all web browsers before continue", I don't have to close them by program (and I don't want to).
I prefer the solution that doesn't use any extra libraries etc., just a basic WinAPI/C++ if it's possible.