Silent Installation

  • Thread starter Thread starter YDSAN
  • Start date Start date
Y

YDSAN

Hi,

I need to pass a list of arguments to MSI for doing the silent installation.
What is the best
way to do this ? Can I have these in a files and pass the file ?
How do I process the parameters ?

Thanks and regards
 
The usual way to do this is to pass properties on the command line.

msiexec /i my.msi PROP=THIS MYOTHERPROP=THAT

Then these values are used to control something in the installation.
 
Back
Top