Bypassing Printer and Application Setup on Express Installation

To skip printer and application Setup when Express Setup is chosen, add the lines "set !DoPrinter = $(!NotChosen)" and "set !DoAppSetup = $(!NotChosen)" under the "ifstr(i) $(!STF_INSTALL_MODE) == EXPRESS" line in the [DoOption] section of the INITIAL.INF file as shown in the following example:


[DoOptions]
    set Status = STATUS_FAILED
options = +
    ifstr(i) $(!STF_PRODUCT) == Winnt
        set OptionsGreyed = {}
    else
        set OptionsGreyed = {3}
    endif
    ifstr(i) $(!STF_WIN31UPGRADE) == "YES"
        set !DoAppSetup = $(!NotChosen)
        set OptionsGreyed = >($(OptionsGreyed), 4)
    endif
    ifstr(i) $(!STF_INSTALL_MODE) == EXPRESS
        set !DoPrinter   = $(!NotChosen)
        set !DoAppSetup  = $(!NotChosen)
        set Status = STATUS_SUCCESSFUL