Changes
added DESKTOP_SHORTCUT VIEWINBROWSER
These installers assume that Windows is localised in English. For Windows localised for other languages you will need to make changes accordingly.
At http://languages.foxitsoftware.com you can download language files for Foxit Reader and copy them in the same directory where Foxit Reader is installed. However the translations are usually in such a bad shape, that even a non-native English speaker is better off with the English version.
=Installer=
path="Foxit Reader" />
<install cmd='msiexec /i "%SOFTWARE%\foxit-reader\FoxitReader33_enu.msi" DESKTOP_SHORTCUT=0 VIEWINBROWSER=0 /qn /norestart' />
<remove cmd='msiexec /x {576CDB8F-98CA-4B0A-942C-EE60F6147931} DESKTOP_SHORTCUT=0 VIEWINBROWSER=0 /passive /norestart' />
<upgrade cmd='msiexec /i "%SOFTWARE%\foxit-reader\FoxitReader33_enu" DESKTOP_SHORTCUT=0 VIEWINBROWSER=0 /qn /norestart' />
</package>
</source>
Please note that VIEWINBROWSER does not affect Internet Explorer integration. To disable that you have to uncheck "Internet -> Display PDF in Browser" through the Foxit Reader GUI or use the script below.
Foxit Reader automatically makes itself the default PDF reader, hence the '-register' command-line switch used with earlier versions isn't used here. If you don't want this you can set the property MAKEDEFAULT=0 during installation.
== Foxit Reader 2.3 ==
File '''settings.bat''':
<source lang="dos">
REM remove desktop link/ not necessary if DESKTOP_SHORTCUT=0 has been set
DEL /Q "%ALLUSERSPROFILE%\Desktop\Foxit Reader.lnk"
REM remove FF plugin/ not necessary if VIEWINBROWSER=0 has been set
DEL /Q "%PROGRAMFILES%\Mozilla Firefox\plugins\npFoxitReaderPlugin.dll"