2) If this is a known problem, I tried to skip starting services if the OS
is vista using

    <InstallExecuteSequence>
        <StartServices Suppress="yes">VersionNT = 600</StartServices>
    </InstallExecuteSequence>

but it do not respect the condition and it don't let start the services on
any OS. Is there something wrong with this configuration?


Suppress="yes" will cause it to remove that action in all cases (the
condition will be ignored) such that the action is no longer in the MSI at
all.

What I think you want is something more like this:

    <InstallExecuteSequence>
        <StartServices>VersionNT < 600</StartServices>
    </InstallExecuteSequence>




-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft 
Defy all challenges. Microsoft(R) Visual Studio 2008. 
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to