Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Where can I find the latest version number in a document in the web? so I can download it with wget to check if the current installed firefox version is up to date and update ir if necessary?

  • 5 个回答
  • 1 人有此问题
  • 2 次查看
  • 最后回复者为 Jaheaga

more options

My problem is that I can't find the latest version number in here http://releases.mozilla.org/pub/mozilla.org/firefox/releases/latest/win32 as a document, so I can check against "HKLM\SOFTWARE\Mozilla\Mozilla Firefox\CurrentVersion" and update or not, all this is done by a script. It will be great not have to change the versión number in the script every time there is a new release.

Thanks

My problem is that I can't find the latest version number in here http://releases.mozilla.org/pub/mozilla.org/firefox/releases/latest/win32 as a document, so I can check against "HKLM\SOFTWARE\Mozilla\Mozilla Firefox\CurrentVersion" and update or not, all this is done by a script. It will be great not have to change the versión number in the script every time there is a new release. Thanks

由Jaheaga于修改

被采纳的解决方案

I think I solved, all I have to do is this:

//here I download the entire page

wget.exe http://www.mozilla.org/en-US/firefox/all.html -O index


//here I search for the word curVersion and set a variable with the result, which is "10.0.2"


for /f "tokens=3 delims= " %%A IN ('type index ^| FIND /I "curVersion" ' ) do set latestversion=%%A

//here I just make sure I get a number

echo "%latestversion%" pause

Later I check it against the registry and voila! I hope this can help other admins who have the same problem.

Regards.

定位到答案原位置 👍 0

所有回复 (5)

more options

Why don't you just use Firefox's internal updater, and it will automatically update your Firefox to the latest version when it becomes available? (I'm assuming this is for windows, not your Linux system, as you posted about the windows registry).

Updating Firefox has more information about how to update Firefox.

Unless I'm terribly misunderstanding your question ;)

more options

The problem is when the user has a versión lower than 3.6 and trust me, I have a lot of those, but in the version 4.0 + there is a way I can update from the command line?

Pd yes, is windows

由Jaheaga于修改

more options

You can use Firefox 3.6's and belows auto update to update to Firefox 10 as well. you just have to either run updates several times until it gets to 10, or, just download and install the exe for 10. even installing Firefox 10 or Firefox 10 won't hurt anything so long as it is the same or later version.

I Am not aware of a way to update using CLI, but https://wiki.mozilla.org/Deployment:Deploying_Firefox might help you.

more options

well, I can't update manually, thats why I have a script, but I want to save the bandwith if the user already has version 10.0.2. thks anyway

由Jaheaga于修改

more options

选择的解决方案

I think I solved, all I have to do is this:

//here I download the entire page

wget.exe http://www.mozilla.org/en-US/firefox/all.html -O index


//here I search for the word curVersion and set a variable with the result, which is "10.0.2"


for /f "tokens=3 delims= " %%A IN ('type index ^| FIND /I "curVersion" ' ) do set latestversion=%%A

//here I just make sure I get a number

echo "%latestversion%" pause

Later I check it against the registry and voila! I hope this can help other admins who have the same problem.

Regards.

由Jaheaga于修改