Re: [TESTING] - NAND OMGB (1.2.3)
Because I didn't feel like installing everyone of my apk's one at a time I whipped up a little batch file script. I am posting it here incase someone else would like it, and didn't feel like recreating the wheel. It will attempt an adb install of all apk files in a directory. It assumes that you have a path statement pointing to your adb location.
I suspect it may not like non standard characters in the file names.
Just stick this line in your batch file, and run it in the dir that has your apk collection.
code:
for /f %%a IN ('dir /b *.apk') do adb install %%~na%%~xa
Last edited by wizardknight; 04-23-2012 at 12:54 AM.
|