Loading
Suite install: how to use an ISS answer file
One of my suite packages is an InstallScript MSI application which uses an ISS "answer" file to install silently. I have generated the answer file (call it "ABC.ISS") and can successfully use it from a command prompt like this:

 

setup.exe /s /f1"C:\\TEMP2\\ISS\\ABC.ISS"

 

I can also successfully use the above string as the entry on "Command Line" (under the Install operation for that package).

 

But since the ISS file will be on the CD, not on the hard drive, I would like to use a path like SRCDIR\ISS\ABC.ISS

 

How can I define and use a path like this to utilize the ISS file? Will SRCDIR work? I can't use it within double-quotes though (e.g., /s /f1"SRCDIR\\ISS\\ABC.ISS" would not be evaluated).

 

Anyone have any ideas? I would rather avoid copying the file to the hard drive to use it there.

Loading
Suite install: how to use an ISS answer file