Link to home
Start Free TrialLog in
Avatar of Joe Rud
Joe RudFlag for United States of America

asked on

SCCM 2012 Firefox install

I need some guidance on installing Firefox 32.0 (most recent version) via SCCM 2012.  Clients are all Windows 7 x64 in a windows domain environment.

I'm trying to use guides and files/scripts, such as those found here: http://stealthpuppy.com/prepare-mozilla-firefox-for-enterprise-deployment-and-virtualization/ but they continue to fail with error code 0x87D00324.

My deployment needs to be silent and disable automatic updates.

Thanks!
ASKER CERTIFIED SOLUTION
Avatar of Steve Whitcher
Steve Whitcher

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Joe Rud

ASKER

2: ECHO [Install] > %SOURCE%\Firefox.ini
yields an error: The system cannot find the path specified
Avatar of Steve Whitcher
Steve Whitcher

Ok, the variable isn't working it sounds like.  Change the first line to:
SET SOURCE=<CurrentDirectory>

(Replace <CurrentDirectory> with the full path of the directory you're working in/saved the firefox installer in)
Avatar of Joe Rud

ASKER

I was able to get this working using a slightly different set of scripts (here: http://www.itninja.com/software/mozilla/firefox-2/26-12).  Also noting that they never gave me the firefox.ini file they were referencing in the first one.

I did use your suggestion of using the command line to test each line of the script to check for errors.  So thank you much for that insight.