I need a self contained msi file to put in the SYSVOL folder so I can roll it out via Group Policy. I have seen various instructions of how to do this (e.g. http://www.itninja.com/blog/view/reader-x-10-1-3-mui - steps 1-5) which all seem to give the following instructions:
- Download the latest full release (ftp://ftp.adobe.com/pub/adobe/reader/win/10.x/10.1.0/en_US/AdbeRdr1010_en_US.msi)
- Download the latest full release (ftp://ftp.adobe.com/pub/adobe/reader/win/10.x/10.1.4/misc/AdbeRdrUpd1014.msp)
Do an admin install of the full release:
msiexec /a AdbeRdr1010_en_US.msi
Slipstream the patch into the install that's just been created:
msiexec /a {path to install}\AdbeRdr1010_en_US.msi /p AdbeRdrUpd1014.msp
Hey presto.
The problem is that I'm left with a small msi file (only about 2MB where-as it should be in the region of 45MB) and 4 folders containing the dependency files. Sure enough, when I try to install the msi from the SYSVOL location, it tells me it can't access the dependency files.
I don't have a great deal of experience in this, can anyone tell me where I've gone wrong or if there's a final step to package everything together?