Page 1 of 1

Feature Specific Shortcuts

Posted: Thu Oct 18, 2007 12:39 am
by Troy
Hi,

I am currently evaluating InstallAware 7 as a possible replacement for Wise for Windows Installer, and was wondering, is it possible to have a short cut created only if a specific feature is selected during the install?

Troy.

Posted: Thu Oct 18, 2007 10:28 am
by Alex_Ronquillo
Sure, This is accomplish with the Get Component State command, a condition, and the Create Shortcut command. Here is an example:

Code: Select all

Get Component New Project Selection State into Variable SELECTED
  if Variable SELECTED Equals TRUE
    Create Shortcut $SHORTCUTFILESALL$\\ to $TARGETDIR$Application.exe
  end

Posted: Fri Oct 19, 2007 3:05 am
by Troy
Thanks, that works great.