Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ingenieursaurav/144f8abc6fed5293e71dbb0dfd155028 to your computer and use it in GitHub Desktop.
Save ingenieursaurav/144f8abc6fed5293e71dbb0dfd155028 to your computer and use it in GitHub Desktop.
Installs Multiple APKs in a Folder
:: Check for Devices
adb devices
:: -r >> reinstalls without removing the data
:: -s >> installs in SD Card
:: to install all APKs in folder D:/APK Backup/.
for %f in ("D:/APK Backup/*.apk") do adb install -r -s "%f"
:: to install all APKs in current folder
for %f in ("*.apk") do adb install -r -s "%f"
pause
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment