Hello,
I'm trying to deploy adobe pro with an MST and it seems as the MST file is giving me trouble. I copied and pasted what worked for me in the past and changed the values, but everytime i run through command line it does not install at all. When i remove the TRANSFORMS switch, it installs just fine. It's odd that it is not working as it worked with adobe standard and reader previously. here is the script:
set HExist=N
set JExist=N
If NOT EXIST h:\ Goto CheckJ
set HExist=Y
:CheckJ
If NOT EXIST j:\ Goto Sub
set JExist=Y
:Sub
If "%HExist%" == "N" subst h: c:\
If "%JExist%" == "N" subst j: c:\
::remove Adobe Acrobat Pro X if present
wmic product where "name like 'Adobe Acrobat X Pro%%'" call uninstall
msiexec.exe /i "%~dp0AcroPro.msi" TRANSFORMS="%~dp0AcroPro.mst" /qn
msiexec.exe /update AcrobatUpd11014.msp /quiet /norestart
If "%HExist%" == "N" subst h: /D
If "%JExist%" == "N" subst j: /D
:End
even if i omitted %~dp0 it does not work.
again, if i were to remove the TRANSFORMS switch it work just fine.
any thoughts would be appreciated