New
#1
Batch file to open multiple browsers
Hello, I need 10 different browsers open and after some searching found a way to write a batch file which worked but with a couple of problems.
The problem is it opens them all at once and several of the browsers crash. So I tried adding a ping after each one as follows:
@echo off
start /D "C:\Program Files (x86)\Google\Chrome\Application" chrome.exe
PING 127.0.0.1 -n 1 -w 3500 >NUL
start /D "D:\Program Files (x86)\SRWare Iron" iron.exe
etc etc etc
but they all still open at the same time, search gave other options like using "delay" but every other option I tried didn't work either.
The other problem is that the browsers that don't crash are not responsive, they just sit there with a blank page until a "page unresponsive" kill window pops up.
Even if I change the file so it is only a single line opening a single browser, it will open the browser and will say loading in the tab but nothing will happen. I have the windows loading circle cursor and i can still click on things but even if I say try to open the history, it will open a new tab for the history but it will just stay while until the unresponsive window pops up.
So I am unable to get a batch file to open a browser and actually load the page and am also unable to get it to open multiple with a delay in between each. Any help would be appreciated.