I have a batch file that runs to open a webpage in Chrome that runs a specific function.
start http://www.example.com/cgi/myprogram.exe
This process runs quickly, then I want to automatically close the browser window. I don't want to use taskkill /IM chrome.exe
because Chrome has many services running under "chrome.exe"
and I only want to kill the one that shows on the applications tag of task manager, not the processes tag.
Is that possible?