Re: [WiX-users] [WIX]:How to reset the INSTALLDIR path by changing the path using 'Change' button

2015-04-09 Thread Joel Budreau
Does this post help? - http://stackoverflow.com/questions/19355537/wix-setting-install-folder-correctly > On Apr 6, 2015, at 10:12 AM, Dileep S wrote: > > Hi All, > > I created an MSI with two dialogs. > 1. InstallDirdlg.wxs > 2. ProgressDlg.wxs > > In *.wxs file i have used some custom actio

Re: [WiX-users] [WIX]: How to display UAC prompt as much early as possible

2015-04-06 Thread Phil Wilson
Do the install with a verbose log and look for the elevation entries that will say something like "MSI_LUA: Elevation required to install product, will prompt for credentials". See what's going on before that. In an MSI the elevation prompts appear at the start of the execute sequence (you don't g

[WiX-users] [WIX]: How to display UAC prompt as much early as possible

2015-04-06 Thread Dileep S
Hi All, I have created MSI with two dialogs. 1) InstallDirDlg.wxs 2) ProgressDlg.wxs Enable the Elevation shield property set as 'yes' for 'Next' button in 'InstallDirDlg.wxs' dialog. UAC prompt displayed after some time (i.e, approximately 1 minute). Is there any way to get the UAC prompt less

[WiX-users] [WIX]:How to reset the INSTALLDIR path by changing the path using 'Change' button

2015-04-06 Thread Dileep S
Hi All, I created an MSI with two dialogs. 1. InstallDirdlg.wxs 2. ProgressDlg.wxs In *.wxs file i have used some custom actions to install the files. In InstallExecuteSequence, NOT REMOVE ~= "ALL" REMOVE = "ALL" using the above custom actions, I was able to run MSI package for m

Re: [WiX-users] [WIX]: How to extract the files in selected folder using MSI dialog.

2015-04-03 Thread John Cooper
Ext: 431050 |jocoo...@jackhenry.com -Original Message- From: Dileep S [mailto:dileep.sanamp...@gmail.com] Sent: Friday, April 3, 2015 8:24 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] [WIX]: How to extract the files in selected folder using MSI di

Re: [WiX-users] [WIX]: How to extract the files in selected folder using MSI dialog.

2015-04-03 Thread Dileep S
S 66214 | Ext: 431050 | > jocoo...@jackhenry.com > > > > -Original Message- > From: Dileep S [mailto:dileep.sanamp...@gmail.com] > Sent: Thursday, March 26, 2015 10:57 PM > To: General discussion about the WiX toolset. > Subject: Re: [WiX-users] [WIX]: How to extract the files

Re: [WiX-users] [WIX]: How to extract the files in selected folder using MSI dialog.

2015-04-03 Thread John Cooper
@jackhenry.com -Original Message- From: Dileep S [mailto:dileep.sanamp...@gmail.com] Sent: Thursday, March 26, 2015 10:57 PM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] [WIX]: How to extract the files in selected folder using MSI dialog. Please find the log files

Re: [WiX-users] [WIX]: How to extract the files in selected folder using MSI dialog.

2015-04-03 Thread Dileep S
I have added the log files. can you just tell me the reason why INSTALLDIR is not changing. On Fri, Mar 27, 2015 at 9:27 AM, Dileep S wrote: > Please find the log files attached here > > On Fri, Mar 27, 2015 at 12:31 AM, Nir Bar wrote: > >> Can you upload the log file? >> >> >> >> - >> Nir

Re: [WiX-users] [WIX]: How to extract the files in selected folder using MSI dialog.

2015-03-26 Thread Dileep S
Please find the log files attached here On Fri, Mar 27, 2015 at 12:31 AM, Nir Bar wrote: > Can you upload the log file? > > > > - > Nir Bar > Freelance Developer > Mail: nir@panel-sw.com > Web: www.panel-sw.com >- C++ On Windows, Linux and Embedded Platforms >- WiX & InstallShiel

Re: [WiX-users] [WIX]: How to extract the files in selected folder using MSI dialog.

2015-03-26 Thread Nir Bar
Can you upload the log file? - Nir Bar Freelance Developer Mail: nir@panel-sw.com Web: www.panel-sw.com - C++ On Windows, Linux and Embedded Platforms - WiX & InstallShield -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WIX-How

[WiX-users] [WIX]: How to extract the files in selected folder using MSI dialog.

2015-03-25 Thread Dileep S
Hi All, I have created MSI using WIX with InstallDir dialogs. I have extracted the MSI package with default. While extracting it shows UAC prompt and then extracted successfully. But, second time installation, i have changed the folder to extract. This time, it was not showing any UAC prompt and

[WiX-users] Wix: How to distinguish silent repair installation vs GUI repair installation using Wix bundle/bootstrapper

2014-09-24 Thread sarantm
I am using wix bundle/bootstrapper to install my MSI along with pre-requisites. My need is to display a custom UI only during GUI repair mode but not during silent repair mode. The problem is that the Wix property UILevel is 2 in both cases (GUI repair and silent repair), so I am unable detect the

Re: [WiX-users] [WIX]: How to add ListView control using themes

2013-12-05 Thread dileep s
Thank you for the information. is also not displaying on UI using WIX3.7 On Tue, Dec 3, 2013 at 2:29 PM, Sergey Yukhno < sergey.yuk...@visutechsystem.by> wrote: > Use not use > > 11/28/2013 12:06, dileep s пишет: > > Hi All, > > > > How to add ListView control in themes file? > > > > I have

Re: [WiX-users] [WIX]: How to add ListView control using themes

2013-12-03 Thread Sergey Yukhno
Use not Hi All, > > How to add ListView control in themes file? > > I have create ListView control in HyperlinkTheme.xml > > > > "yes" TabStop="yes" ImageListGroupHeader="LVSIL_GROUPHEADER"> > > Book1 > > Book2 > > > > "yes" FontId="0">Next > > > > Is building correctly. > > When I ran the

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-12-02 Thread Blair Murri
Create a couple of methods and add them to your .def file. The protototypes of them are as follows: extern "C" HRESULT WINAPI BootstrapperApplicationCreate( __in IBootstrapperEngine* pEngine, __in const BOOTSTRAPPER_COMMAND* pCommand, __out IBootstrapperApplication** ppApplication

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-12-02 Thread Nicolás Alvarez
2013/12/2 dileep s : > On Mon, Dec 2, 2013 at 1:21 PM, Blair Murri wrote: >> I was referring to the code in SampleDLL.dll. I assume you are not >> creating your UI in DllMain(). There is a method that you export where your >> UI is created that Burn calls. > > Hi Blair, > > The following code is i

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-12-02 Thread dileep s
il.com > > To: wix-users@lists.sourceforge.net > > Subject: Re: [WiX-users] [WIX]: How to trigger my MSI file when I select > install option in Wix Custom Bootstrapper UI > > > > Hi Blair, > > > > I have created the C++ custom action project. > > Created Dial

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-12-01 Thread Blair Murri
forge.net > Subject: Re: [WiX-users] [WIX]: How to trigger my MSI file when I select > install option in Wix Custom Bootstrapper UI > > Hi Blair, > > I have created the C++ custom action project. > Created Dialog Resource file. > Created functions in C++ custom action DLL Main(

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-12-01 Thread dileep s
rs@lists.sourceforge.net > > Subject: Re: [WiX-users] [WIX]: How to trigger my MSI file when I select > install option in Wix Custom Bootstrapper UI > > > > Hi Blair, > > > > Thank you for the information.. > > > > Can you give some example to call the Boot

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-12-01 Thread Blair Murri
how did you load your BA? > Date: Fri, 29 Nov 2013 11:07:37 +0530 > From: dileep.sanamp...@gmail.com > To: wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] [WIX]: How to trigger my MSI file when I select > install option in Wix Custom Bootstrapper UI > > Hi Blai

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-11-28 Thread dileep s
:43:53 +0530 > > From: dileep.sanamp...@gmail.com > > To: wix-users@lists.sourceforge.net > > Subject: Re: [WiX-users] [WIX]: How to trigger my MSI file when I select > install option in Wix Custom Bootstrapper UI > > > > Hi Blair, > > > > Thank you for the informati

[WiX-users] [WIX]: How to add ListView control using themes

2013-11-28 Thread dileep s
Hi All, How to add ListView control in themes file? I have create ListView control in HyperlinkTheme.xml Book1 Book2 Next Is building correctly. When I ran the bootstrapper.exe it doesnot show any UI. I think its got corrupted? How to add ListView control using themes? Can an

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-11-28 Thread Blair Murri
il.com > To: wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] [WIX]: How to trigger my MSI file when I select > install option in Wix Custom Bootstrapper UI > > Hi Blair, > > Thank you for the information. > > Is there any examples in c++ to call Detect

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-11-27 Thread dileep s
gt; to you. > > > > > Date: Tue, 26 Nov 2013 11:55:54 +0530 > > > From: dileep.sanamp...@gmail.com > > > To: wix-users@lists.sourceforge.net > > > Subject: [WiX-users] [WIX]: How to trigger my MSI file when I select > > install option in W

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-11-27 Thread ak m
:54 +0530 > > From: dileep.sanamp...@gmail.com > > To: wix-users@lists.sourceforge.net > > Subject: [WiX-users] [WIX]: How to trigger my MSI file when I select > install option in Wix Custom Bootstrapper UI > > > > Hi All, > > > > I have created cust

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-11-26 Thread Blair Murri
You call Detect, then Plan, and then Apply on the engine. How you intersperse those calls with what you show when in your UI is ultimately up to you. > Date: Tue, 26 Nov 2013 11:55:54 +0530 > From: dileep.sanamp...@gmail.com > To: wix-users@lists.sourceforge.net > Subject: [WiX

[WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-11-25 Thread dileep s
Hi All, I have created custom UI in C++. I was able to display my custom UI in WIX BootStrapper application. In custom UI, I have two options like install, Exit. How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI? Anyone please help me on this?

Re: [WiX-users] [Wix] How to pass an argument to MSI with in EXE file?

2013-09-12 Thread dileep s
Thanks Phill, its working fine... On Thu, Sep 12, 2013 at 6:50 PM, Phill Hogland wrote: > The approach I take to do this is: > > 1) in the Bootstrapper, as a child of your Bundle element, declare a > variable that has bal:Overridable='yes'. > 2) then under the MsiPackage use the MsiProperty to

Re: [WiX-users] [Wix] How to pass an argument to MSI with in EXE file?

2013-09-12 Thread Phill Hogland
The approach I take to do this is: 1) in the Bootstrapper, as a child of your Bundle element, declare a variable that has bal:Overridable='yes'. 2) then under the MsiPackage use the MsiProperty to set the Property to the value of the variable. 3) Launch the bundle with MyFile.exe MODEL=Xxxx (and

[WiX-users] [Wix] How to pass an argument to MSI with in EXE file?

2013-09-11 Thread dileep s
Hi All, Silent installation is not working for WIX bootstrapper (.exe) using command prompt. Wix bootstrapper includes MSI package. Silent installation for MSI is working fine. For installing MSI silently from command prompt. msiexec /i "Myfile.msi" /qn /l "D:\log.txt" MODEL="xxx" For install

Re: [WiX-users] [WIX] How to installing same MSI file twice

2013-09-10 Thread Phil Wilson
ckhenry.com > www.jackhenry.com > > > > -Original Message- > From: dileep s [mailto:dileep.sanamp...@gmail.com] > Sent: Tuesday, September 10, 2013 7:04 AM > To: General discussion for Windows Installer XML toolset. > Subject: Re: [WiX-users] [WIX] How to i

Re: [WiX-users] [WIX] How to installing same MSI file twice

2013-09-10 Thread John Cooper
o...@jackhenry.com www.jackhenry.com -Original Message- From: dileep s [mailto:dileep.sanamp...@gmail.com] Sent: Tuesday, September 10, 2013 7:04 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] [WIX] How to installing same MSI file twice Is there any way to in

Re: [WiX-users] [WIX] How to installing same MSI file twice

2013-09-10 Thread dileep s
Sent: 10 September 2013 12:44 > To: General discussion for Windows Installer XML toolset. > Subject: [WiX-users] [WIX] How to installing same MSI file twice > > Hi All, > > I have created MSI using WIX for installing printer driver. > > When I installed MSI first tim

Re: [WiX-users] [WIX] How to installing same MSI file twice

2013-09-10 Thread David Watson
You don't. You have to change the maintenance mode UI to be what you want. -Original Message- From: dileep s [mailto:dileep.sanamp...@gmail.com] Sent: 10 September 2013 12:44 To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] [WIX] How to installing sam

[WiX-users] [WIX] How to installing same MSI file twice

2013-09-10 Thread dileep s
Hi All, I have created MSI using WIX for installing printer driver. When I installed MSI first time, it was installed the printer driver correctly. When I want to install the other printer driver using same MSI file, it shows Maintenance mode UI. How to show the Installation UI dialogs instead

Re: [WiX-users] WiX How To...

2012-04-10 Thread Keith.Douglas
otmail.com] Sent: April-09-12 11:39 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] WiX How To... Thanks for your replies. I've started reading the book that Neil mentions but have a three early questions: 1. The book specifically states that Visual Studi

Re: [WiX-users] WiX How To...

2012-04-09 Thread Rob Mensching
nks > Ian > > > > > -Original Message- > From: Neil Sleightholm > Sent: Friday, April 06, 2012 12:10 AM > To: General discussion for Windows Installer XML toolset. > Subject: Re: [WiX-users] WiX How To... > > There is also a WiX book that would point you

Re: [WiX-users] WiX How To...

2012-04-09 Thread Ian Brooke
Original Message- From: Neil Sleightholm Sent: Friday, April 06, 2012 12:10 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] WiX How To... There is also a WiX book that would point you in the right direction https://www.packtpub.com/wix-a-develop

Re: [WiX-users] WiX How To...

2012-04-05 Thread Neil Sleightholm
Installer XML toolset. Subject: Re: [WiX-users] WiX How To... Have you read the tutorial: http://wixtoolset.org/documentation/tutorial ? It's pretty good. On Thu, Apr 5, 2012 at 5:16 PM, Ian Brooke wrote: > Hi, > I'm new to this package so please excuse my lack of knowledge and &

Re: [WiX-users] WiX How To...

2012-04-05 Thread Rob Mensching
Have you read the tutorial: http://wixtoolset.org/documentation/tutorial ? It's pretty good. On Thu, Apr 5, 2012 at 5:16 PM, Ian Brooke wrote: > Hi, > I'm new to this package so please excuse my lack of knowledge and please > keep any explain simple! I basically have three questions but I will

[WiX-users] WiX How To...

2012-04-05 Thread Ian Brooke
Hi, I'm new to this package so please excuse my lack of knowledge and please keep any explain simple! I basically have three questions but I will describe my situation first... I need to produce an installer/uninstaller for a new version of a Windows legacy application. This app is in use on

[WiX-users] Wix: How to set a Feature State “ This Feature Will Not be available”?

2010-12-16 Thread Farrukhw
Hi experts, I've assigned a task in which one sub feature among 4 should be displayed to the user in the state as "This Feature Will Not be available" For instance, I have this feature set:

[WiX-users] Wix: How to set a Feature State “This Feature Will Not be available”?

2010-12-16 Thread Farrukh Waheed
Hi experts, I've assigned a task in which one sub feature among 4 should be displayed to the user in the state as "This Feature Will Not be available" For instance, I have this feature set: I've tri

[WiX-users] WiX: How to restor a registry value on uninstall?

2009-06-04 Thread zhihai guo
I want to assert that a certain registry value exists after installation, so I added the following component: The value might already be set before the installation. I want that the value is set to my specific value. My problem is how to restore it to previous value when my product is uninstalle

Re: [WiX-users] WiX: how to get system locale

2007-03-07 Thread Bob Arnson
Vamsi Krishna K. wrote: > Can the "Package" element's "Languages" attribute be used to enforce this? > No. It just tells MSI which code page to use to display text. If you want to restrict where your packages get deployed, use a launch condition (Product/Condition) instead. -- sig://boB htt

Re: [WiX-users] WiX: how to get system locale

2007-03-06 Thread Vamsi Krishna K.
Thanks Bob. I'll take a look at what you suggested. Can the "Package" element's "Languages" attribute be used to enforce this? On 07/03/07, Bob Arnson <[EMAIL PROTECTED]> wrote: > Vamsi Krishna K. wrote: > > I'm generating MSIs for my tool in different languages, and I want to > > make sure the

Re: [WiX-users] WiX: how to get system locale

2007-03-06 Thread Bob Arnson
Vamsi Krishna K. wrote: > I'm generating MSIs for my tool in different languages, and I want to > make sure the user installs the correct language version. > > Is it possible to find out the current active locale on the target > machine, so that I can fail the installation if needed? > There's

[WiX-users] WiX: how to get system locale

2007-03-06 Thread Vamsi Krishna K.
Hi, I'm generating MSIs for my tool in different languages, and I want to make sure the user installs the correct language version. Is it possible to find out the current active locale on the target machine, so that I can fail the installation if needed? Thanks Vamsi --

Re: [WiX-users] Wix: how to generate 64-bit MSIs

2006-10-15 Thread Bob Arnson
Please keep wix-users on the thread. Vamsi Krishna K. wrote: > My question is - using WiX, how do I generate the MSI so that the file > itself is 64-bit? See my earlier message: >> Check out the Package/@Platforms element. Package/@Platforms lets you mark the package as 64-bit. Then you need t

Re: [WiX-users] Wix: how to generate 64-bit MSIs

2006-10-12 Thread Bob Arnson
Vamsi Krishna K. wrote: > Depending on some environment variables, I need to generate MSIs for > different CPU architectures (x86, a64, ia64). I can't figure out how > to generate 64-bit MSIs using WiX. Searched on the net and in the > tutorials, didn't find anything. Can anyone please help? > C

[WiX-users] Wix: how to generate 64-bit MSIs

2006-10-12 Thread Vamsi Krishna K.
Hi, I've been using WiX to build my tool's installer, and ran into a problem. Depending on some environment variables, I need to generate MSIs for different CPU architectures (x86, a64, ia64). I can't figure out how to generate 64-bit MSIs using WiX. Searched on the net and in the tutorials, didn