Google-chrome – create a cmd shortcut which opens url in chrome, firefox and IE simultaneously

command linefirefoxgoogle-chromekeyboard shortcuts

Well everyone aware about launching specific browser with some url.
What if you want to launch multiple browser simultaneously at same time with random url??
Looking for some command line shortcut which launches chrome, firefox and IE simultaneously with specific address. Keep in mind address will not be the same every time. I would like to have control over address to launch all browser simultaneously.

i.e http://localhost:8080 should be launched in chrome, IE and firefox at same time.

Best Answer

SET MyUrl=https://www.google.com

START iexplore.exe %MyUrl%
START "" [...]\chrome.exe %MyUrl%
START "" [...]\firefox.exe %MyUrl%

replace [...] with your browser's path. IE doesn't need it.

As per David's comment: the first parameter to start (before the program name) is the title.  It must be in quotes, but it may be null (i.e., the empty string "").  In theory, the title is optional, but if your program's path includes space(s), then you must put that in quotes, and then you must include a title so start can tell that the program pathname isn't the title.