+ Reply to Thread
Results 1 to 1 of 1

Thread: How to obtain current builds of Chromium using a batch file for Windows XP ?

  1. #1
    Join Date
    Sep 2008
    Location
    Bangkok
    Posts
    1,259
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default How to obtain current builds of Chromium using a batch file for Windows XP ?

    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;

    Code:
    @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
    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 file
    Last edited by sulasno; 12-07-2009 at 09:28 PM.

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Optimization by vBSEO 3.6.0