set adb=.\adb.exe
set apks=.\apks\*.apk
for %%X in (%apks%) do (
echo Installation de %%X
%adb% install %%X
)
pause