This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Suite install: how to use an ISS answer file
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
Nov 01, 2011
04:35 PM
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.
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.
(1) Reply
Nov 02, 2011
08:42 AM
Found the answer myself, based on one of the InstallShield blogs at:
http://blogs.flexerasoftware.com/installtalk/2011/09/installing-a-suite-package-operations.html
Basically, all you need to do is:
(1) Include the ISS file in the Support Files (Language Independent is probably the best choice)
(2) Use this on the Command Line for the Install operation:
/s /f1"[SETUPSUPPORTDIR]\ABC.ISS"
Thanks for the info., InstallShield staff! 😄
http://blogs.flexerasoftware.com/installtalk/2011/09/installing-a-suite-package-operations.html
Basically, all you need to do is:
(1) Include the ISS file in the Support Files (Language Independent is probably the best choice)
(2) Use this on the Command Line for the Install operation:
/s /f1"[SETUPSUPPORTDIR]\ABC.ISS"
Thanks for the info., InstallShield staff! 😄