Repackage an Application - Silent Install - Batch to EXE Converter
Repackage an Application – PDF-XChange Viewer PRO Deployment Methods -This example will use the program PDF-XChange Viewer PRO for demonstration purposes but you can use any other software that is compatible with this method of repackaging! Write a batch file with the following (desired) commands; @echo off "setup.exe" /VERYSILENT /NORESTART /COMPONENTS:"pdfviewer,Help,IEAddin" /KEY:"XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" /PDFV /PDFVINBROWSER regedit.exe /s "settings.reg" exit The file "settings.reg" is the registry entries which contains some of the preferences and settings for this particular program. All software that we install on our computers has this kind of entries in the "Registry Editor". You can export this registry key for your particular program and add in your batch file in order to customize some of the settings silently right after the installation! Once your batch file is ready, let's save i...