Last active
December 28, 2021 05:29
-
-
Save thebagchi/df29ae862fc1c296dec2 to your computer and use it in GitHub Desktop.
script for issuing commands to multiple android devices on windows
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
:: Inspired by Linux version of the same https://gist.github.com/christopherperry/3208109 | |
@echo off | |
SET ARGUMENTS=%~1 | |
if "%ARGUMENTS%" == "" ( | |
GOTO EOF | |
) | |
SET "ARGUMENTS=%ARGUMENTS:""="%" | |
SETLOCAL ENABLEDELAYEDEXPANSION | |
:: INSTALL ON ALL ATTACHED DEVICES :: | |
FOR /F "tokens=1,2 skip=1" %%A IN ('adb devices') DO ( | |
SET IS_DEV=%%B | |
if "!IS_DEV!" == "device" ( | |
SET SERIAL=%%A | |
echo "adb -s !SERIAL! %ARGUMENTS%" | |
call adb -s !SERIAL! %ARGUMENTS% | |
) | |
) | |
ENDLOCAL | |
:EOF |
Also need instructions for how to save this BAT file?
I realize this is a bit old, but I am seeing issues here. Maybe I am missing something.
'adb devices' is returning a list of devices, but when I call this batch file nothing is seen. I am even trying to echo out IS_DEV and nothing is there. Digging in deeper 'adb devices > dev.txt' and dev.txt is empty.
Please check
- device is connected
- developer option enabled
- usb debugging on
- windows driver is installed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
My Requirement:
Please confirm below script is good one to install apk in multiple devices on windows machine!!
Also, please share the steps in detailed manner to run this.
echo off
setlocal EnableDelayedExpansion
for /f "tokens=" %%f in ('C:\android\sdk\platform-tools\adb.exe devices') do (
for /r %%p in (.apk) do (
set devicestr=%%f
set apk=%%p
if "!devicestr!"=="!devicestr:List=!" (
for /f "tokens=1" %%d in ("!devicestr!") do (
set deviceid=%%d
echo !deviceid!
echo !apk!
C:\android\sdk\platform-tools\adb.exe -s !deviceid! install !apk!
)
)
)
)