At work, they have this stupid banner that starts up automatically when the user logs in. It isn't programmed well, gets in the way and is generally annoying, so I kill it through the Task Manager, everyday. I want to programmatically stop it or kill it on startup.
My main problem is, I am not 100% sure how it is started and I don't have access to a registry viewer (and they disable regedit) to find out, but even if I could, I doubt I would have permission to edit the setting.
I have tried putting a batch script in my startup folder with the following:
taskkill /IM banner.exe
Problem there is, sometimes my script gets executed before banner.exe starts.
What is the best solution for stopping or killing this application automatically?
