8 Pages V   1 2 3 > »   
Reply to this topic
 FireFox 3.53, Powerful Web browser with plugins and optional Flash
post Oct 10 2008, 04:32 PM
Post #1
JonF
Gold Member   *****
Group: .script developer

  Joined: 7-January 07 From: Boston, MA

Posts: 1,164
Thank(s): 228


United States


File name: FireFox 3.53
Description: Requires a writable %userprofile% directory, but the program directory may be on read-only media. This is no problem in VistaPE/Win7PE, since we know exactly where the %userprofile% will wind up and it's always writable with FBWF. In other projects, it's a little more tricky, and it's up to the user to ensure that there's an appropriate writable directory.

I've included the FireFTP, BugMeNot, XMarks (formerly Foxmarks), and FireBug addons. It will copy pretty much all of your settings (including FireFTP settings) if you point it at your settings directory. It is set not to use any disk cache.

Tested in LiveXP, VistaPE, and Win7PE.

Version 13:
  • Updated Firefox
  • Updated XMarks and Firebug extensions
  • Updated Flash to 10.0.32.18
  • Removed all hardcoded X:\... items from script (moved to loader).

Version 14
  • Updated Firefox and Xmarks
  • Added TabMix Plus extension


Download file

This post has been edited by JonF: Sep 14 2009, 06:02 PM


7 user(s) said "Thank you!" to JonF for this fantastic post:
AeroXP, amalux, MaineCoon, Nuno Brito, Phobes, saydin77, soporific
+Quote Post
post Oct 10 2008, 05:29 PM
Post #2
Lancelot
Frequent Member   ****
Group: .script developer

  Joined: 8-May 08 From: Turkiye/Izmir

Posts: 908
Thank(s): 696


Turkiye


Thanks a lot for this nice script JonF worship.gif

It works nicely with LiveXP, even without fbwf or bootsdi thumbup.gif


--------------------
I Galapo's LiveXP and King Amalux's Great LiveXP Package (tutorial and everything)
Lancelot Tips For LiveXP
I hate Medusa problems of WinBuilder, Cryptic codes, syntax rules fakingly mismatching working lines, not having even basic fundemantal syntax rules and mostly 'lies' and 'post games'.
('post games' = includes dishonest, childish posts that have goal to annoy others in community)
+Quote Post
post Oct 10 2008, 05:32 PM
Post #3
TheHive
Platinum Member   ******
Group: .script developer

  Joined: 14-July 06
Posts: 3,111
Thank(s): 88


Thats great, Thanks!


--------------------
+Quote Post
post Oct 10 2008, 06:28 PM
Post #4
Nuno Brito
Platinum Member   ******
Group: .script developer

  Joined: 13-July 06 From: Pittsburgh

Posts: 8,638
Thank(s): 464


Portugal


Thumbs up for a new FF script! thumbup.gif


--------------------


Join us at the Virus removal forums!
+Quote Post
post Oct 10 2008, 06:51 PM
Post #5
amalux
bug-catcher   *****
Group: Tutorial Writer

  Joined: 1-February 07 From: California

Posts: 1,744
Thank(s): 280


United States


Thanks Jon F, very nice script wink.gif


--------------------
"The true measure of a man is how he treats someone who can do him absolutely no good." — Samuel Johnson

"Whether you think that you can, or that you can't, you are usually right." — Henry Ford

Tutorial - LiveXP, W7PEX & ppApps! - My Scripts - My Builds - Portable-ppAX
+Quote Post
post Oct 10 2008, 08:13 PM
Post #6
dera
Gold Member   *****
Group: .script developer

  Joined: 17-January 07
Posts: 1,154
Thank(s): 268


Hungary


Thanks for the update!

But at me have some problem in LiveXP project, i.e. can not see my bookmarks came from the host computer.
Is it possible that the FirefoxLoader at first copies the files from the folder 'FireFox\Settings\Personal'
(the files that came from the host computer) and after it unpack your Settings.7z?
I mean if I do it manually: first unpack your Settings.7z than copy the files came from the host
there is no such problem.
+Quote Post
post Oct 10 2008, 11:18 PM
Post #7
JonF
Gold Member   *****
Group: .script developer

  Joined: 7-January 07 From: Boston, MA

Posts: 1,164
Thank(s): 228


United States


QUOTE (dera @ Oct 10 2008, 04:13 PM) *
Is it possible that the FirefoxLoader at first copies the files from the folder 'FireFox\Settings\Personal'
(the files that came from the host computer) and after it unpack your Settings.7z?

No. The source code is in the file, but there's nothing to it:

CODE
$AppData = RegRead("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders","AppData")

If Not FileExists($AppData & "\Mozilla\Firefox\profiles.ini") Then
ShellExecuteWait(@ScriptDir & "\Settings\7z.exe","x -o""" & $AppData & """ """ & @ScriptDir & "\Settings\Settings.7z""",$AppData,"open",@SW_HIDE)
FileCopy(@ScriptDir & "\Settings\Personal\*.*",$AppData & "\Mozilla\Firefox\Profiles\PE.User",1)
EndIf

ShellExecute(@ScriptDir & "\Firefox.exe")

It waits unitl 7zip exits before copying personal settings. I don't understand how your problem is happening.
+Quote Post
post Oct 11 2008, 05:26 PM
Post #8
dera
Gold Member   *****
Group: .script developer

  Joined: 17-January 07
Posts: 1,154
Thank(s): 268


Hungary


My %UserProfile% is on drive B: (using ImDisk RAMDrive formatted as NTFS, not compressed, FBWF or BootSDI not used, so my %SystemDrive% is not writable)
but noticed in the folder '%UserProfile%\Application Data\Mozilla\Firefox\Profiles\PE.User '
the files copied by the loader from the folder 'FireFox\Settings\Personal' are all Read-only.
+Quote Post
post Oct 11 2008, 07:52 PM
Post #9
Lancelot
Frequent Member   ****
Group: .script developer

  Joined: 8-May 08 From: Turkiye/Izmir

Posts: 908
Thank(s): 696


Turkiye


A very minor thing,
Add_Shortcut,StartMenu,Network,,,,,%PE_Programs%\%ProgramFolder%\Firefox.exe
should be this
Add_Shortcut,StartMenu,%pTextBox1%,,,,,%PE_Programs%\%ProgramFolder%\Firefox.exe
thumbup.gif


--------------------
I Galapo's LiveXP and King Amalux's Great LiveXP Package (tutorial and everything)
Lancelot Tips For LiveXP
I hate Medusa problems of WinBuilder, Cryptic codes, syntax rules fakingly mismatching working lines, not having even basic fundemantal syntax rules and mostly 'lies' and 'post games'.
('post games' = includes dishonest, childish posts that have goal to annoy others in community)
+Quote Post
post Oct 13 2008, 10:47 PM
Post #10
JonF
Gold Member   *****
Group: .script developer

  Joined: 7-January 07 From: Boston, MA

Posts: 1,164
Thank(s): 228


United States


QUOTE (dera @ Oct 11 2008, 01:26 PM) *
My %UserProfile% is on drive B: (using ImDisk RAMDrive formatted as NTFS, not compressed, FBWF or BootSDI not used, so my %SystemDrive% is not writable)
but noticed in the folder '%UserProfile%\Application Data\Mozilla\Firefox\Profiles\PE.User '
the files copied by the loader from the folder 'FireFox\Settings\Personal' are all Read-only.

Hum. I also have my profile on drive B, NTFS compressed, and they do not wind up as read-only. I am not using FBWF or BootSDI. Files copied from a read-only drive to a readable drive are not supposed to carry the read-only bit along with them. I will have to test some. Probably nor for a few days, I'm very busy.

@Lancelot: Damn. I'll fix it in a few days.
+Quote Post

8 Pages V   1 2 3 > » 
Reply to this topic
1 User(s) are reading this topic ()



Collapse

  Topic Replies Topic Starter Views Last Action
No New Posts Topic has attachmentsFirefox 4.0 Beta 2
5 Max_Real Qnx 408 1st August 2010 - 12:35 PM
Last post by: Nuno Brito
No New Posts Firefox 4 Beta 1
1 Max_Real Qnx 378 7th July 2010 - 08:11 PM
Last post by: MedEvil
No New Posts FireFox 3.0.7 Silent setup
3 Shirin Zaban 2,482 5th April 2009 - 04:21 PM
Last post by: mahdi
No New Posts FireFox2&3 Portable
script for LiveXP
3 Lancelot 2,105 7th November 2008 - 12:41 PM
Last post by: ladiko
No new Topic has attachmentsFirefox 3.0.3 with addons, your settings
33 JonF 6,274 10th October 2008 - 04:35 PM
Last post by: JonF