I am on a work computer, and I cannot bypass the administrator's choice to open numerous programs upon Startup. I would like to create a program that automatically closes all of these programs once they start up, but I don't know how to do this. Please, help!
Answers
If you're on Windows, it is easier to do if you create .bat file - it runs system commands, just as if you print them in console.
try to put something like this in text editor, save it as .bat and run:
taskkill /F /IM process.exe
, where replace "process.exe" with actual processes names that you want to killNo Processing is needed here.