MSFN Forum: Firefox Setup 1.5.0.3 Switches List - MSFN Forum

Jump to content



Unattended CD/DVD Guide Homepage ˇ MSFN Forum Rules

Welcome to the Applications Installs forum. Make sure you read the forum rules before you start posting.

Links/Requests to warez and/or any illegal material (porn, cracks, serials, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated.

We try our best to keep this forum clean of illegal content. If you see any illegal activity use the "report" button you find in every post to report the specific post to the moderators. If you ignore any of the rules you will be banned without notice.

Read Forum Rules
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Firefox Setup 1.5.0.3 Switches List all switches shown in firefox Rate Topic: -----

#1 User is offline   urie 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 509
  • Joined: 30-July 03

Posted 03 May 2006 - 06:57 AM

Quote

Here is compleate list of switches in firefox i don't know where some people are getting the -setdefaultbrowser it is not in the list,
notes unpack firefox installer and run setup with -h


Usage: setup.exe [options]
		 
	   [options] can be any of the following combination:
			-h: This help.
			-a [path]: Alternate archive search path.
			-app [app id]: ID of application which is launching the installer (shared installs)
			-app_path [app]: Points to (full path) representative file of application (Shared installs)
		*	-dd [path]: Suggested install destination directory. (Shared installs)
	*	-greLocal: Forces GRE to be installed into the application dir.
	*	-greShared: Forces GRE to be installed into a global, shared dir (normally)
					c:\program files\common files\mozilla.org\GRE
		-reg_path [path]: Where to make entries in the Windows registry. (Shared installs)
		-f: Force install of GRE installer (Shared installs), 
					though it'll work for non GRE installers too.
			   
		-greForce: Force 'Component GRE' to be downloaded, run, and installed.  This
			bypasses GRE's logic of determining when to install by running its
			installer with a '-f' flag.
		-n [filename]: Setup's parent process filename.
	*	-ma: Run setup in Auto mode.
	*	-ms: Run setup in Silent mode.
		-ira: Ignore the [RunAppX] sections
		-ispf: Ignore the [Program FolderX] sections that show
			the Start Menu shortcut folder at the end of installation.
	*	-showBanner: Show the banner image in the download and install progress dialogs
	*	-hideBanner: Hide the banner image in the download and install progress dialogs
	*	-cleanupOnUpgrade: Tells Setup to check to see if user is upgrading (installing on top
		of previous version of product).  If user is upgrading:
		*	   NORMAL mode: prompt user on how to proceed
				*	   All other modes: assume user wants to cleanup.
	*	-noCleanupOnUpgrade: Tells Setup to not check if user is upgrading (installing on top
		of previous version of product).  This will disable the cleanup feature.
	* means it will override config.ini





[attachment=12406:attachment]


#2 User is offline   ZileXa 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 767
  • Joined: 27-May 04

Posted 03 May 2006 - 03:37 PM

I always just use the -ms switch to do a silent install. Its a nice list though.

Do you perhaps know how to disable the Import Wizard? Its useless for unattended use since ff will be installed on a clean system without IE bookmarks or such. I hate the Import Wizard!

#3 User is offline   Nologic 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 461
  • Joined: 07-October 03

Posted 03 May 2006 - 04:06 PM

Deleted

This post has been edited by Nologic: 05 May 2006 - 07:21 AM


#4 User is offline   arabianhorse 

  • Go easy on me
  • Pip
  • Group: Members
  • Posts: 87
  • Joined: 07-June 05

Posted 04 May 2006 - 10:49 AM

:thumbup

Why did you embark on such a difficult journey.

OK I feel generous today...just use silent switch

Mozilla-Firefox-1.5.0.3.exe -ms


#5 User is offline   svenby 

  • Newbie
  • Group: Members
  • Posts: 46
  • Joined: 28-May 05

Posted 04 May 2006 - 11:30 AM

Does it simple. Unrar edit config.ini

[General]
; Run Mode values:
; Normal - Shows all dialogs. Requires user input.
; Auto - Shows some dialogs, but none requiring user input. It will
; automatically install the product using default values.
; Silent - Show no dialogs at all. It will install product using default
; values.
Run Mode=Silent
:P

#6 User is offline   urie 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 509
  • Joined: 30-July 03

Posted 04 May 2006 - 01:36 PM

View Postarabianhorse, on May 4 2006, 05:49 PM, said:

:thumbup

Why did you embark on such a difficult journey.

OK I feel generous today...just use silent switch

Mozilla-Firefox-1.5.0.3.exe -ms


Quote

Mozilla-Firefox-1.5.0.3.exe -ms that is the switch i use myselfe just thought peeps would like to know all switches available to them :)


#7 User is offline   ZileXa 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 767
  • Joined: 27-May 04

Posted 04 May 2006 - 01:44 PM

Yeah but, for every user account I would need to run this script... there should be an easier way..

View PostNologic, on May 4 2006, 12:06 AM, said:

hmm could use AutoIt

; Execute Installer
If FileExists	( @ScriptDir & "\Firefox_1.5.0.3.exe" ) Then	
	Run	( @ScriptDir & "\Firefox_1.5.0.3.exe -ms" )
Else
	Exit
EndIf

Do
	Sleep ( 100 )
Until WinExists ( "Import Wizard" )

WinWaitActive	( "Import Wizard" )
WinClose	( "Import Wizard" )
ProcessClose	( "firefox.exe" )


Heh or you could go the full AutoIt route: [link]


#8 User is offline   Nologic 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 461
  • Joined: 07-October 03

Posted 04 May 2006 - 02:55 PM

Deleted

This post has been edited by Nologic: 05 May 2006 - 07:21 AM


#9 User is offline   Paradox Me 

  • Newbie
  • Group: Members
  • Posts: 31
  • Joined: 19-April 06

Posted 10 May 2006 - 06:02 PM

Quote

Mozilla-Firefox-1.5.0.3.exe -ms


Ok what gives? I did that and FF doesn't install! Am I missing something? I got "Firefox Setup 1.5.0.3.exe" directly from the mozilla.com site, put it into my $oem$ and added this to my runonceex.cmd

REG ADD %KEY%\005 /VE /D "FireFox 1.5" /f
REG ADD %KEY%\005 /V 1 /D "%PP%Firefox Setup 1.5.0.3.exe -ms" /f



:wacko:

#10 User is offline   urie 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 509
  • Joined: 30-July 03

Posted 10 May 2006 - 06:40 PM

View PostParadox Me, on May 11 2006, 01:02 AM, said:

Quote

Mozilla-Firefox-1.5.0.3.exe -ms


Ok what gives? I did that and FF doesn't install! Am I missing something? I got "Firefox Setup 1.5.0.3.exe" directly from the mozilla.com site, put it into my $oem$ and added this to my runonceex.cmd

REG ADD %KEY%\005 /VE /D "FireFox 1.5" /f
REG ADD %KEY%\005 /V 1 /D "%PP%Firefox Setup 1.5.0.3.exe -ms" /f



:wacko:


Maybey try renaming it without spaces.

REG ADD %KEY%\005 /VE /D "FireFox 1.5" /f
REG ADD %KEY%\005 /V 1 /D "%PP%Firefox_Setup_1.5.0.3.exe -ms" /f

This post has been edited by urie: 10 May 2006 - 06:47 PM


#11 User is offline   weebl 

  • Group: Members
  • Posts: 4
  • Joined: 03-July 04

Posted 11 May 2006 - 05:23 AM

How do I avoid FF installing itself as the default browser using silent install? No switch for that as far I can see.

This post has been edited by weebl: 11 May 2006 - 05:23 AM


#12 User is offline   JuMz 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 466
  • Joined: 09-August 04

Posted 11 May 2006 - 11:46 AM

View PostParadox Me, on May 10 2006, 07:02 PM, said:

Quote

Mozilla-Firefox-1.5.0.3.exe -ms


Ok what gives? I did that and FF doesn't install! Am I missing something? I got "Firefox Setup 1.5.0.3.exe" directly from the mozilla.com site, put it into my $oem$ and added this to my runonceex.cmd

REG ADD %KEY%\005 /VE /D "FireFox 1.5" /f
REG ADD %KEY%\005 /V 1 /D "%PP%Firefox Setup 1.5.0.3.exe -ms" /f



:wacko:


You have spaces in your path. This is going to cause problems. You have to follow a special set of characters to accomplish this (has to do with slashes). You can find the complete solution here:

Applications that use Quotation Marks

#13 User is offline   Djé 

  • accent artist
  • PipPipPip
  • Group: Members
  • Posts: 359
  • Joined: 10-January 06

Posted 13 May 2006 - 08:54 AM

View Posturie, on May 3 2006, 02:57 PM, said:

Here is compleate list of switches in firefox i don't know where some people are getting the -setdefaultbrowser it is not in the list

Your list of switches is for firefox SETUP, but -setdefaultbrowser is a switch for the application itself.

You would have first to install Fx, and then to run it using this switch.
But this is not silent at the moment and you would have to close (manually or AutoIt) Fx window.
In the next version (1.5.0.4) they will normally add a -silent switch to do it unattended:
firefox.exe -silent -setdefaultbrowser


#14 User is offline   urie 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 509
  • Joined: 30-July 03

Posted 13 May 2006 - 09:02 AM

Djé, thanks for the explanation thats cleared things up :)

#15 User is offline   COKEDUDEUSF 

  • Member
  • PipPip
  • Group: Members
  • Posts: 226
  • Joined: 24-January 07

Posted 02 October 2008 - 09:39 AM

Does anyone have updated switches?

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy