Jump to content

GoogleBar for Firefox (HELP)


djsleepy

Recommended Posts

Im usin the command

"%programfiles%\\Mozilla Firefox\\firefox.exe" -install-global-extensions "%CDROM%\\Install\\MozillaFireFox\\GoogleBar.xpi"

and all that ahppens during install is that firefox pops up!!!

The Googlebar is nowhere to be found.. :(

I check extensions in firefox and its not listed on there either..

Can someone please help me

Thanks In Advance

Link to comment
Share on other sites


I was testing yesterday with the silence of the foxes and tried to install some extensions on the same way.

I found out that, for me, it didn't work if I called those .xpi files from an other directory than the same directory where firefox.exe is located, so I wrote this script to solve this:

@ECHO OFF
start /wait firefoxsilent.exe

ECHO Installing extentions...
copy "XPI\*.xpi" "%systemdrive%\program files\Mozilla Firefox\"
cd "%systemdrive%\program files\Mozilla Firefox\"
for %%e in ("*.xpi") do "firefox.exe" -install-global-extension "%%e"
del /Q *.xpi

ECHO Installing themes...
copy "THEME\*.jar" "%systemdrive%\program files\Mozilla Firefox\"
cd "%systemdrive%\program files\Mozilla Firefox\"
for %%e in ("*.jar") do "firefox.exe" -install-global-theme "%%e"
del /Q *.jar

My directory structure is like this:

FIREFOX\XPI\*.xpi

FIREFOX\THEME\*.jar

FIREFOX\firefoxsilent.exe

FIREFOX\install.cmd (containing this script)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...