Yep. Looks like /qn was the winner this time. What is the difference between that and /qb?Try /qn instead of /qb?
@echo off
for %%i in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do (
if exist "%%i:\office" (
set DRIVE=%%i
goto :EXIT
)
)
:EXIT
cd /d %DRIVE%:\reader && msiexec /i "AcroPro.msi" LANG_LIST=en_US TRANSFORMS="AcroPro.mst" /qn
/c rmdir /S /Q "C:\reader"
Update: Moving the cleanup command from before-logon to after-logon gets rid of the Adobe folder entirely. This means you can have a full silent install with cleanup.Hopefully I did not overlook anything, but if anyone wants to do a silent install of Adobe Reader with a transform file I used a modified version of @garlin's method to do so. Basically it works like this: