Hi, This is more specific for you.
http://www.packtpub.com/article/windows-installer-xml-wix-adding-user-interface The code you might be interested in is <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> <Fragment> <UI> <Dialog Id="ProgressDlg" Width="370" Height="270" Title="Amazing Software" Modeless="yes"> <Control Id="CancelButton" Type="PushButton" TabSkip="no" Text="Cancel" Height="17" Width="56" X="180" Y="243" Cancel="yes"> <Publish Event="EndDialog" Value="Exit" /> </Control> <Control Id="MyProgressBar" Type="ProgressBar" X="70" Y="150" Width="200" Height="20" ProgressBlocks="yes"> <Subscribe Event="SetProgress" Attribute="Progress" /> </Control> </Dialog> <InstallUISequence> <Show Dialog="ProgressDlg" After="InstallDlg" /> </InstallUISequence> </UI> </Fragment> </Wix> *****Attention***** This electronic transmission may contain confidential, sensitive, proprietary and/or privileged information belonging to the sender. This information, including any attached files, is intended only for the persons or entities to which it is addressed. Authorized recipients of this information are prohibited from disclosing the information to any unauthorized party and are required to properly dispose of the information upon fulfillment of its need/use, unless otherwise required by law. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon this information by any person or entity other than the intended recipient is prohibited. If you have received this electronic transmission in error, please notify the sender and properly dispose of the information immediately. -----Original Message----- From: Pasquale Fersini [mailto:basquale.fers...@gmail.com] Sent: Monday, September 24, 2012 10:37 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Show progress bar during downloading .net framework Hi all, I want to show a progress bar during downloading .net Framework; I use following code: <PackageGroup Id="Netfx4Full"> <ExePackage Id="Netfx4Full" Cache="no" Compressed="no" PerMachine="yes" Permanent="yes" Vital="yes" SourceFile="dotNetFx40_Full_x86_x64.exe" DownloadUrl="http://go.microsoft.com/fwlink/?LinkId=164193" InstallCommand="/quiet /norestart AGREETOLICENSE=YES" RepairCommand="/q ACTION=Repair /hideconsole" DetectCondition="NET4Installed = 1" /></PackageGroup> According to my chief, I should display a message or show a progress bar, because the installer seems to be frozen. Any ideas? Thanks in advance! ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users