Skip to content

Instantly share code, notes, and snippets.

@VenomVendor
Last active May 13, 2020 07:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save VenomVendor/5040764 to your computer and use it in GitHub Desktop.
Save VenomVendor/5040764 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