Adobe Reader XI Installation - Error:1642 - Kace 2000 3.6.98680
After updating our K2000 from 3.5 to 3.6 we found that our Adobe Reader XI fails to install as a post install task. The task fails and gives me the following -
Our file structure is as follows that is located in C:\KACE\Applications\39
The Batch file reads
msiexec.exe /I adberdr11000_en_us.msi TRANSFORMS=acroread.mst /passive
msiexec.exe /update AdbeRdrUpd11004.msp /passive
-------------------
The actual post installation task has the folder zipped up correctly and the command line just has AdobeReader.bat. We are not using the call or start instruction.
Any help would be appreciated
Answers (3)
Hi Jason,
if you try directly a post install without bat
import just msi file and use cde line :
msiexec.exe /I adberdr11000_en_us.msi TRANSFORMS=acroread.mst /qn
work or not?
on your bat script if you try to add :
start /wait msiexec.exe /I adberdr11000_en_us.msi TRANSFORMS=acroread.mst /qn
start /wait msiexec.exe /update AdbeRdrUpd11004.msp /qn
i hope that can help you
msiexec.exe /passive /i adberdr11000_en_us.msi TRANSFORMS=acroread.mst
msiexec.exe /passive /update AdbeRdrUpd11004.msp
Testing now and will see what happens. - jason.rfpco 10 years ago
According to the XML<Task ID="86">
<Name>Install Adobe Reader XI - TEST</Name>
<WorkingDirectory>%systemdrive%\KACE\Applications\86</WorkingDirectory>
<CommandLine><![CDATA[AdobeReader.bat]]></CommandLine>
<Parameters></Parameters>
<PostTaskAction>None</PostTaskAction>
<KACETaskType>Application</KACETaskType>
<FileType>Batch</FileType>
<Type>PO</Type>
<Guid>1538f5e5a3b8e1</Guid>
</Task> - jason.rfpco 10 years ago
1642 is telling you that the patch isn't correct for the installed product.
http://support.microsoft.com/kb/290158
How you proceed depends on why WI thinks that that's the case. Does the patch get applied in a stand-alone test? If you remove the patch entry from the command ilfe, does that flavour of Reader get installed?
BTW, my rule of thumb for command files and script of any kind is: aways, always, always, always, ALWAYS use full paths for everything on the command line. Never EVER assume that the OS will find the file. - anonymous_9363 10 years ago