Last active
May 13, 2020 07:21
-
-
Save VenomVendor/5040764 to your computer and use it in GitHub Desktop.
Installs Multiple APKs in a Folder
This file contains hidden or 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
:: 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