How to write bat file that open more than one URL in new windows in firefox? In chrome -new-window command works but what is the command in firefox?
Give a try for this sample :
@echo off
Set URL="www.google.com www.stackoverflow.com www.yahoo.com www.facebook.com www.twitter.com"
set NewTab=-new-tab
set NewWindow=-new-window
For %%a in (%URL%) Do (Start /d "%programfiles%\Mozilla Firefox" Firefox.exe %Newtab% "%%a")
For %%b in (%URL%) Do (Start /d "%programfiles%\Mozilla Firefox" Firefox.exe %NewWindow% "%%b")