This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
pushd "%~dp0" | |
if exist running exit | |
if "%PROCESSOR_ARCHITECTURE%" == "x86" set platform=Win | |
if "%PROCESSOR_ARCHITECTURE%" == "AMD64" set platform=Win_x64 | |
if "%PROCESSOR_ARCHITEW6432%" == "AMD64" set platform=Win_x64 | |
if "%platform%" == "" echo Supported only x86 and amd64 cpu architectures. & pause & exit | |
set channel=snapshots | |
set url=https://storage.googleapis.com/chromium-browser-%channel%/%platform% | |
set wget=wget.exe -N |