I don't have 7zip. Here is an example shortcut with two parameters. The shortcut wouldn't have to be deleted after each use -- it could just be stuck out of the way somewhere in your Documents folder.
Target: "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" "http://www.yahoo.com/" "http://www.google.ca/"
Start in: "C:\Program Files (x86)\Mozilla Firefox"
Here is a tested Execute line that accomplishes the same thing as the above shortcut; notice the difference in quotation marks:
- Code: Select all
Execute "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" "http://www.yahoo.com/ http://www.google.ca"
Your problem is that one of your parameters contains a space, making your two parameters (in the Execute line) look like three. At the moment, I don't see a solution for that. Anyhow, as I said earlier, Execute is temperamental, and it is entirely normal to resort to having Execute call some external assistance, such as Windows Explorer in the case of the shortcut, or a one-line batch file, etc., to accomplish what Execute is too stubborn and cantankerous to accomplish on its own.
Edit: Spaces are fine in the shortcut because each parameter is enclosed in q. marks.