/build/static/layout/Breadcrumb_cap_w.png

Adobe Acrobat Pro Silent Install - Dialog Copy

I'm trying to create a silent installation of Adobe Acrobat 9 Pro that starts off with a 9.0.0 base, and will patch up to 9.4.6

For the most part this is working as desired, however, pretty much during each update - I get a brief file copy window that says it's updating adobepdf.dll to c:\windows\system32

I'm confused as to why this is showing up when everything else about the overall install is silent. Has anyone seen this before, or now how I may address it? I'm using Wise Package Studio, here is the script I'm using -


Check free disk space

Rem Copy files needed for installation to TEMP

Install File C:\Users\Administrator\Desktop\DONE\Adobe Acrobat Professional 9\Abcpy.ini to %TEMP%\Abcpy.ini

Install File C:\Users\Administrator\Desktop\DONE\Adobe Acrobat Professional 9\AcroPro.msi to %TEMP%\AcroPro.msi

Install File C:\Users\Administrator\Desktop\DONE\Adobe Acrobat Professional 9\Data1.cab to %TEMP%\Data1.cab

Install File C:\Users\Administrator\Desktop\DONE\Adobe Acrobat Professional 9\ISOInstall.mst to %TEMP%\ISOInstall.mst

Install File C:\Users\Administrator\Desktop\DONE\Adobe Acrobat Professional 9\Setup.exe to %TEMP%\setup.exe

Install File C:\Users\Administrator\Desktop\DONE\Adobe Acrobat Professional 9\AcroProStdUpd910_T1T2_incr.msp to %TEMP%\AcroProStdUpd910_T1T2_incr.msp

Install File C:\Users\Administrator\Desktop\DONE\Adobe Acrobat Professional 9\AcrobatUpd912_all_incr.msp to %TEMP%\AcrobatUpd912_all_incr.msp

Install File C:\Users\Administrator\Desktop\DONE\Adobe Acrobat Professional 9\AcrobatUpd920_all_incr.msp to %TEMP%\AcrobatUpd920_all_incr.msp

Install File C:\Users\Administrator\Desktop\DONE\Adobe Acrobat Professional 9\AcrobatUpd930_all_incr.msp to %TEMP%\AcrobatUpd930_all_incr.msp

Install File C:\Users\Administrator\Desktop\DONE\Adobe Acrobat Professional 9\AcrobatUpd932_all_incr.msp to %TEMP%\AcrobatUpd932_all_incr.msp

Install File C:\Users\Administrator\Desktop\DONE\Adobe Acrobat Professional 9\AcrobatUpd933_all_incr.msp to %TEMP%\AcrobatUpd933_all_incr.msp

Install File C:\Users\Administrator\Desktop\DONE\Adobe Acrobat Professional 9\AcrobatUpd940_all_incr.msp to %TEMP%\AcrobatUpd940_all_incr.msp

Install File C:\Users\Administrator\Desktop\DONE\Adobe Acrobat Professional 9\AcrobatUpd942_all_incr.msp to %TEMP%\AcrobatUpd942_all_incr.msp

Install File C:\Users\Administrator\Desktop\DONE\Adobe Acrobat Professional 9\AcrobatUpd945_all_incr.msp to %TEMP%\AcrobatUpd945_all_incr.msp

Install File C:\Users\Administrator\Desktop\DONE\Adobe Acrobat Professional 9\AcrobatUpd946_all_incr.msp to %TEMP%\AcrobatUpd946_all_incr.msp

Execute %TEMP%\acropro.msi TRANSFORMS="%temp%\isoinstall.mst" /quiet /norestart (Wait)

Execute %TEMP%\AcroProStdUpd910_T1T2_incr.msp /qn /norestart REINSTALL=ALL REINSTALLMODE=omus (Wait)

Execute %TEMP%\AcrobatUpd912_all_incr.msp /qn /norestart REINSTALL=ALL REINSTALLMODE=omus (Wait)

Execute %TEMP%\AcrobatUpd920_all_incr.msp /qn /norestart REINSTALL=ALL REINSTALLMODE=omus (Wait)

Execute %TEMP%\AcrobatUpd930_all_incr.msp /qn /norestart REINSTALL=ALL REINSTALLMODE=omus (Wait)

Execute %TEMP%\AcrobatUpd932_all_incr.msp /qn /norestart REINSTALL=ALL REINSTALLMODE=omus (Wait)

Execute %TEMP%\AcrobatUpd933_all_incr.msp /qn /norestart REINSTALL=ALL REINSTALLMODE=omus (Wait)

Execute %TEMP%\AcrobatUpd940_all_incr.msp /qn /norestart REINSTALL=ALL REINSTALLMODE=omus (Wait)

Execute %TEMP%\AcrobatUpd942_all_incr.msp /qn /norestart REINSTALL=ALL REINSTALLMODE=omus (Wait)

Execute %TEMP%\AcrobatUpd945_all_incr.msp /qn /norestart REINSTALL=ALL REINSTALLMODE=omus (Wait)

Execute %TEMP%\AcrobatUpd946_all_incr.msp /qn /norestart REINSTALL=ALL REINSTALLMODE=omus (Wait)

Rem Cleanup files that were used for install

Delete File(s) %TEMP%\abcpy.ini

Delete File(s) %TEMP%\acropro.msi

Delete File(s) %TEMP%\data1.cab

Delete File(s) %TEMP%\isoinstall.mst

Delete File(s) %TEMP%\setup.exe

Delete File(s) %TEMP%\AcroProStdUpd910_T1T2_incr.msp

Delete File(s) %TEMP%\AcrobatUpd912_all_incr.msp

Delete File(s) %TEMP%\AcrobatUpd920_all_incr.msp

Delete File(s) %TEMP%\AcrobatUpd930_all_incr.msp

Delete File(s) %TEMP%\AcrobatUpd932_all_incr.msp

Delete File(s) %TEMP%\AcrobatUpd933_all_incr.msp

Delete File(s) %TEMP%\AcrobatUpd940_all_incr.msp

Delete File(s) %TEMP%\AcrobatUpd942_all_incr.msp

Delete File(s) %TEMP%\AcrobatUpd945_all_incr.msp

Delete File(s) %TEMP%\AcrobatUpd946_all_incr.msp

Exit Installation





0 Comments   [ + ] Show comments

Answers (2)

Posted by: fitzgerac 12 years ago
Senior Yellow Belt
0
I think it probably has something to do with the REINSTALL= and REINSTALLMODE= switches you are using. I believe this forces the installer to re-cache the files from the original installation source, which is why you are seeing a file copy window. I don't use those switches very often so I could be off there.

If I were you I would look into creating an administrative installtion point (AIP) on your network. You can then apply all the patches (quarterly patches only!) to this AIP, and then deploy a completely up-to-date version of the software in one installation to your client machines. This article may help: http://blogs.adobe.com/an_tai/archives/9 but let me know if you need any clarification.
Posted by: anonymous_9363 12 years ago
Red Belt
0
Yup, AIP is the correct way to do this.
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ