為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

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 於 修改