How to obtain current builds of Chromium using a batch file for Windows XP ?
First, download the required files ;
1. wget
2. 7-zip
Extract the contents of wget to a folder and install 7-zip to the default folder.
Create a batch file and place it in the wget folder;
This file will download the current build of Chromium, extract the contents of the zip file to chrome-win32, place it on the Desktop, and delete the downloaded zipped fileCode:@ECHO OFF wget -O "%userprofile%\desktop\chrome-win32.zip" http://build.chromium.org/buildbot/continuous/LATEST/chrome-win32.zip SETLOCAL ENABLEEXTENSIONS PATH=%PATH%;"C:\Program Files\7-Zip" CD /D %userprofile%\desktop FOR %%X IN (*.zip) DO ( 7z x -aoa -o"%userprofile%\desktop\" "%%X" | FIND "Everything is Ok" >nul IF ERRORLEVEL 1 ( ECHO.ERROR EXTRACTING "%%X" ) ELSE ( DEL "%%X" ) ) ENDLOCAL




Reply With Quote