I believe your /q parameter is instructing the exe package not to show a UI.

-----Original Message-----
From: Karl Werner [mailto:karl.wer...@gmail.com] 
Sent: Tuesday, June 18, 2013 2:49 PM
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] Show UI during ExePackage install in Bundle

Is there any way to show an ExePackage UI?  In my case I'm downloading and 
installing the .Net 3.5 Framework with this stuff:


 <util:RegistrySearch Root="HKLM" Key="SOFTWARE\Microsoft\Net Framework 
Setup\NDP\v3.5" Value="Version" Variable="Netfx35Version" />

      <Chain>
        <!--<PackageGroupRef Id="Netfx35" />-->
        <ExePackage Id="Netfx35"
            Cache="no"
            Compressed="no"
            PerMachine="yes"
            Permanent="yes"
            Vital="yes"
            Name="Prerequisites\dotnetfx35.exe"
            DownloadUrl="http://go.microsoft.com/fwlink/?linkid=118076";

            InstallCommand="/q /norestart /lang:ENU"
            RepairCommand="/q /norestart /lang:ENU"
            UninstallCommand="/q /norestart /lang:ENU"
            InstallCondition="NOT Netfx35Version OR (Netfx35Version &lt; 
v3.5.30729.1)"
            DetectCondition="Netfx35Version AND (Netfx35Version &gt;= 
v3.5.30729.1)">
            <ExitCode Value ="3010" Behavior="forceReboot" />
            <RemotePayload
CertificatePublicKey="F321408E7C51F8544B98E517D76A8334052E26E8"

CertificateThumbprint="D57FAC60F1A8D34877AEB350E83F46F6EFC9E5F1"
                 Description=".NET Framework 3.5 Setup"
                 Hash="3DCE66BAE0DD71284AC7A971BAED07030A186918"
                 ProductName=".NET Framework 3.5"
                 Size="242743296"
                 Version="3.5.30729.1"    />

          </ExePackage>
<MsiPackage>MyStuff</MsiPackage>
</Chain>
------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to