Re: [WiX-users] How to copy log file

2011-03-21 Thread David Watson
Won't the windows installer have a file lock on the log file until the installation is complete? So you are looking at doing it in a bootstrapper of some sort or maybe just specify where you want the log file in the first place with /l. Dave -Original Message- From: Thai-Hoa Nguyen

Re: [WiX-users] 64-bit java registry detection?

2011-03-21 Thread David Watson
The windows installer is finding the path from the registry correctly as C:\Program Files\Java\jre6, but your MSI is 32 bit so if you try to use it, it will automatically be converted to the 32 bit location. Best practice is to use a 64 bit msi to install 64bit or anycpu software onto 64 bit

Re: [WiX-users] Multilanguage install

2011-03-21 Thread Tobias S
@Chris InstallShield bootstrapper needs 2 MSTs as it even transforms the default lanugage (no idea why - transform is not empty, it applies additional property InstallShieldTempProp=0 ). Assume here the only way is to build with WiX the MSIs containing a dummy property (e.g. WiXProperty = 0).

Re: [WiX-users] wix shortcut run as administrator.

2011-03-21 Thread MYFLEX
Anybody having the following issue? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/wix-shortcut-run-as-administrator-tp5443294p6192185.html Sent from the wix-users mailing list archive at Nabble.com.

Re: [WiX-users] 64-bit java registry detection?

2011-03-21 Thread Tim St. Clair
Is there any way to disable path translation itself? Our code installer are 32-bit which we would like to keep (for legacy reasons), but we would still like to view 64-bit registry entries where possible. http://wix.sourceforge.net/manual-wix3/wix_xsd_package.htmThis seems like a gaping whole

[WiX-users] Creating new Oracle Database and basic table structure

2011-03-21 Thread bharatj
Hello All, Can anyone please explain how to create oracle database, Basic structure(Empty tables with few procedures) using WIX. Could you please let me know whether it is possible or not? Also how to check whether oracle is installed or not in the system? Thanks Regards, Bharat Jasti

[WiX-users] Creating

2011-03-21 Thread bharatj
-- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Creating-tp6192384p6192384.html Sent from the wix-users mailing list archive at Nabble.com. -- Colocation vs. Managed

Re: [WiX-users] Creating new Oracle Database and basic table structure

2011-03-21 Thread Dick Van den Brink
I don't think it's possible to do it in the wxs files but maybe you can write a custom action.In the custom action you could connect to the server and execute some scripts. Also how to check whether oracle is installed or not in the system?Maybe with a registry check?

Re: [WiX-users] Creating new Oracle Database and basic table structure

2011-03-21 Thread bharat jasti
Thank you Vandenbrink. I did not use custom action scripts so far. Could you please direct me to a link or material where can i find stuff about custom action scripts. Regards, Bharat Jasti On Mon, Mar 21, 2011 at 10:27 AM, Dick Van den Brink d_vandenbr...@live.com wrote: I don't think it's

Re: [WiX-users] Creating new Oracle Database and basic table structure

2011-03-21 Thread Dick Van den Brink
Alot of information can be found here: http://www.tramontana.co.hu/wix/lesson3.php and http://www.tramontana.co.hu/wix/lesson10.php Regards, Dick van den Brink Date: Mon, 21 Mar 2011 10:46:23 -0400 Subject: Re: [WiX-users] Creating new Oracle Database and basic

Re: [WiX-users] 64-bit java registry detection?

2011-03-21 Thread David Watson
Hi, By using @Win64=yes you have successfully read the 64bit part of the registry, that is not the issue. This issue is 32 bit msi packages are not allowed/supposed access to 64 bit folders (program files) by windows, the WoW subsystem intercepts the calls and redirects them. You could

Re: [WiX-users] Creating new Oracle Database and basic table structure

2011-03-21 Thread David Watson
I believe Dblock's extension does oracle via odbc. http://msiext.codeplex.com/ -Original Message- From: Dick Van den Brink [mailto:d_vandenbr...@live.com] Sent: 21 March 2011 14:52 To: bharat.ja...@gmail.com; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Creating new Oracle

[WiX-users] Light error

2011-03-21 Thread Wilson, Brian
Good Morning, I am getting the following error when running Light with a NAnt task. error LGHT0103 : The system cannot find the file 'and' with type 'Source'. I am using WiX 3.5 and I am not sure where the error could be. If you need more information, please let me know.   Thank you,  

Re: [WiX-users] 64-bit java registry detection?

2011-03-21 Thread Pally Sandher
Looks like you're missing the point here Tim. It's Windows Installer which modifies the path when you're installing a 32-bit package. WiX has nothing to do with it. Check a verbose log if you don't believe us you'll see something called WIN64DUALFOLDERS modifying your path for you. As David

[WiX-users] VS2010, Wix and MSBUILD

2011-03-21 Thread Michael Tissington
I have created a solution and project with VS and now I'm trying to build the solution for the command line with MSBUILD. However when I try to do this I can a bunch of errors that VS variables are not defined. How can I build my solution on a machine that does not have VS but does have MSBUILD

Re: [WiX-users] Light error

2011-03-21 Thread Wilson, Brian
In my NAnt task I added #x22; before and after the WiX variable. Before the change: arg line=-dImportSrc=${Import.Dir} / After the change: arg line=-dImportSrc=#x22;${Import.Dir}#x22; / This fixed my problem.   Thank you,   Brian Wilson Programmer Analyst, Associate Department

[WiX-users] how to create a single component in output wxs file for whole directory using heat

2011-03-21 Thread Sanjay Rao
Hi, I have a directory having thousand of files and directories in it. Since these files/folders updated rarely in one version to another version, So I just want to create minimum number of component for this directory to make the installer faster. This is just an experiment to check whether

[WiX-users] Support MultiInstance Component in instance transforms

2011-03-21 Thread IrishGlugg
Could anyone help me understand what this changeset comment means, Support MultiInstance Component in instance transforms? I saw it in the commits on codeplex on 3/20 by Rob, but when browsing the source I couldn't determine where this change is located. Here's a quick link: