Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

Start Firefox from CMD window + passing single parameter to multiple URLs

  • 4 risposte
  • 2 hanno questo problema
  • 1 visualizzazione
  • Ultima risposta di SannNord

more options

I know I can open multiple tabs in Firefox from a CMD window with "Firefox.exe URL1 URL2 URL3".

What I want to do is pass a common parameter to each URL, ultimately putting all this into a simple CMD script suffixed with the common parameter. Any suggestions?

I know I can open multiple tabs in Firefox from a CMD window with "Firefox.exe URL1 URL2 URL3". What I want to do is pass a common parameter to each URL, ultimately putting all this into a simple CMD script suffixed with the common parameter. Any suggestions?

Tutte le risposte (4)

more options

What language does a CMD script use??

Firefox doesn't, as far as I know, allow you to pass a single URL in two parts, so your script will need to append the parameters to the URLs.

more options

CMD = Windows command line

more options

SannNord said

CMD = Windows command line

Right, but were you limiting yourself to DOS batch file commands from the 90s, or would you use VBScript (like .vbs / .wsh), JScript, PowerShell, etc.?

Anyway, that was just curiosity. A better site for Windows scripting tips would be something like http://superuser.com/ or another http://stackexchange.com/ community.

more options

Actually, I'm looking to identify a 'common' cross-platform shell script-type solution that would be used on Windows/Linux/OSX with minimal modification. No VBS. The generic form would be

firefox.exe URL1 URL2 URL3 "argument parameters"

An example use case would be to pass a common search argument to three different search websites within a single Firefox browser session. The "argument parameters" would be directly appended to the the URL - for example, appending a single search parameter to multiple search engines simultaneously.