Jump to content

Jonnyboy

Members
  • Posts

    538
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Jonnyboy

  1. Thanks to all of you and all went great!
  2. The script gets the current files posted at http://www.mozilla.com/en-US/firefox/all.html
  3. update posted Changelog v0.602 - 03-26-09 -removed ability to keep the extensions status - files used absolute paths to extensions -fixed issue where when returning from help screen, the window would refresh improperly -fixed button sizes -moved Foxit Reader to "Additional Software Needed"
  4. @Happy-Dude The prefs.js file is blank in all Firefox version (Vanilla and Optimized). They are not edited in any way by in the Optimized builds.
  5. Foxit Reader must be installed before the plugin will work. The plugin only allows you to read a pdf inside of firefox. The order in which you set things up, should not matter.
  6. I think that I may have found another thing that may be causing the problem. If your extensions are currently not Global and your create the installer with them as Global ( or vice versa) and you choose to keep the extensions current status, then the path to the extensions will be wrong and Firefox will not load them on startup. I will see about editing the file in that case. *EDIT* edit the file will only be possible if you are installing Firefox and the profile to the system drive. The future system drive ( to be installed into ) must also be the same as the current system drive. I will have to create a series of checks to determine this and invalidate if necessary. Unfortunately, I am out of time for this session. I will get back to it as soon as I can.
  7. I think that you have done a no no. You can not choose to locate the New Profile Path in the default location. If that is the location that you want it in, leave that blank. I am checking this now. Please try deleting the profile after you have installed the addon and then start Firefox. If all is well, then that was the problem. The log shows that everything copied properly. I will add script that will check this a invalidate if it entered as the choice.
  8. Update Posted *Forgot to add* Changelog v0.601 - 03-21-09 -fixed issue where when returning from help screen, the window would refresh improperly -added option to keep extensions.ini and extension.rdf. These files store the status (disabled or not) of each extension. If these files are not present, they are regenerated, automatically. -fixed issue where when leaving Firefox Addon Maker to Main with the title was incorrect
  9. Nope. Foxit wouldn't install into my system until I installed Firefox in the default location. So, I couldn't get the plugin until figured that one out.
  10. update posted Changelog v0.60 - 03-20-09 -added plugin for Foxit Reader -updated plugins: Flash v.10.0.22.87, Shockwave v.11.0.472, WGA v1.9.0009.1, OGA v.1.7.0111.00, QuickTime v.7.60.92.0, RealPlayer v.6.0.12.69 and Live Connect v.6.0.12.69 -added status bar -re-written to all text localizeable -aaded off-line mode to allow for building installer from your current installation -added script to attempt to locate your current installation folders -removed all tooltips and replaced with "?" help screens -fixed issues wuth 3.1.x Optimized versions -fixed issue with 3.1.x versions branding not being removed
  11. Mozilla just changed the website layout and it may take me awhile to get the links corrected.
  12. I'm 90% done with an update and I hope all of these issues will be taken care of. Thanks
  13. is the quicklaunch loacation the same %APPDATA%\Microsoft\Internet Explorer\Quick Launch in languages other than english? Also, it it in the same location in Vista and Win7?
  14. I like it and I just might use it!! :thumbsup_anim:
  15. I will look into it. It is easy enough. I am currently modifying the tool, I may be able to add that option without much difficulty. Thanks
  16. I am working on a tool that will combine my Firefox Addon Maker, Inf Assistant and Thunderbird Addon Maker into one tool. This will make it easier for me to add additional tools, in the future. Also, everything is being redone so to make the addition of localized strings easier. Currently, it is being created with English and French. I am looking for ideas for any options and additions that are not currently in my tools and any bugs that were in my tools that had not been corrected.
  17. Yes, send me the logs. thx
  18. http://www.hr-host.com/wincert/Jonnyboy/Fi...aker_v0.515.exe
  19. No, I have been using xcopy since moving to the hta as front-end. If it workied properly in other versions, then there must be another reason why it is not working on your system. Have you tried using a shorter path? After some initial testing, I do not believe that to be the problem. So, the next version will remove xcopy and use vbscript to copy files. Just more work to get it working.
  20. This will do the checking and start if necessary. It is better that you set the as a scheduled task instead of looping every 20 minutes. But, I have included a timer loop. Option Explicit Dim objWMIService, objProcess, colProcess Dim strComputer, strList, Running strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" _ & strComputer & "\root\cimv2") Set colProcess = objWMIService.ExecQuery _ ("Select * from Win32_Process") Do For Each objProcess in colProcess Running = "" If objProcess.Name = "cleanmgr.exe" Then Exit For Running = "False" Next If Running = "False" Then Run "C:\program files\cleanmgr\cleanmgr.exe" wscript.sleep 120000000 Loop Sub Run(ByVal sFile) Dim shell Set shell = CreateObject("WScript.Shell") shell.Run Chr(34) & sFile & Chr(34), 1, false Set shell = Nothing End Sub Hope this helps. PS - Don't forget to edit the path to the program to run. ~Jonnyboy
  21. Please send me the log file and I will look at it.
  22. :thumbsup_anim: With each new version, they keep adding new names. I missed this one. Thanks for pointing it out. I will fix in the next update. ~Jonnyboy
×
×
  • Create New...