I'm working on a C# app (automated bot) to open many Internet Explorer windows and visit different sites at same time.
It uses to open almost a window every 10 seconds, so, after a few minutes, I just have hundreds of windows, which, of course, slowly down my pc quite a lot...
So, I'm curious to know if there is some way to close all the active windows directly from my application, so that I can run that code in a thread or something like that, every some minutes.
Thanks in advance.