Deploying Foxit Reader
Deploying Foxit Reader
Download the Foxit Reader Enterprie MSI package
https://www.foxitsoftware.com/downloads/
Save the MSI file in a folder within the shared apps folder
Create a batch file to deploy the MSI using the configuration options required
http://cdn01.foxitsoftware.com/pub/foxit/manual/reader/en_us/FoxitReaderDeploymentAndConfiguration9.6_Manual.pdf
In our example we are configuring the reader not to insert a desktop shortcut
@ECHO OFF
mkdir c:\tmps
xcopy /Y \\192.168.200.42\apps\foxitreader\FoxitReader96_enu_Setup.msi c:\tmps
msiexec /i c:\tmps\FoxitReader96_enu_Setup.msi /quiet DESKTOP_SHORTCUT=0
rd c:\tmps /S /Q
exit