View Single Post
  #1487 (permalink)  
Old 04-13-2012, 05:22 PM
wizardknight's Avatar
wizardknight
PPCGeeks Regular
Offline
 
Join Date: Aug 2009
Posts: 181
Reputation: 95
wizardknight is becoming a great contributor
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
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.
Reply With Quote