Skip to content

Instantly share code, notes, and snippets.

@TheMaxCoder
Created June 29, 2020 11:40
Show Gist options
  • Save TheMaxCoder/3f14ab3b305eb3ad0539cf2de6b5ab31 to your computer and use it in GitHub Desktop.
Save TheMaxCoder/3f14ab3b305eb3ad0539cf2de6b5ab31 to your computer and use it in GitHub Desktop.
Install APK on all attached devices
@ECHO OFF
:: Sets the title of the CMD window
Title Installing %1
:: Prints the name and path of APK being installed
ECHO installing %1...
FOR /F "skip=1" %%x IN ('adb devices') DO start ADB -s %%x install %1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment