How to know an application launch in windows? [duplicate]
Possible Duplicate:
Detecting the launch of a application
Can I register a listener and get notification when an application lau开发者_开发技巧nch?
I know that in Mac NSWorkSpace can do it, how about windows?
You can put a Forever loop while(true) { if(Process.GetProcessesByName("TheSoftwareYouNeed").Length > 0) Notify();//Here you can call a method which handles with notyfind }
精彩评论