[WiX-users] PowerShell error with make.bat: C/C++ Compiler Driver has stopped working

2008-11-27 Thread Marcel Kulicke
Hi wix-users,

When trying to build the newer versions of WIX using make.bat. I get:
checkRequiredArgs:
   [cl] Compiling 1 files to 
'C:\Users\marcelku\Downloads\wix3-sources\build\obj\debug\x86\ambient'.
BUILD FAILED - 6 non-fatal error(s), 3 warning(s)
C:\Users\marcelku\Downloads\wix3-sources\global.include(223,10):
External Program Failed: cl (return code was -1073741515)
Total time: 12.4 seconds.
While right during the [cl] action the compiler driver is crashing.
It seems the PowerShell is the reason for this crash. With cmd everything works 
fine...

Just in case someone runs into the same situation...
Best regards,

Marcel

Marcel Kulicke
Application Development Consultant | Microsoft Premier Support for Developers
E-Mail: [EMAIL PROTECTED]mailto:[EMAIL PROTECTED] | Phone: +49 (89) 3176-4619 
| Mobile: +49 (175) 5844 559
Microsoft Deutschland GmbH | http://www.microsoft.com/germany
Konrad-Zuse-Straße 1, 85716 Unterschleißheim, Germany

Geschäftsführer: Achim Berg, Marcel Schneider, Benjamin O. Orndorff , Keith 
Dolliver
Amtsgericht München, HRB 70438.

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] DTF InstallerException Invalid handle

2008-10-07 Thread Marcel Kulicke
Hi,

I have a problem with a CustomAction and DTF. In my CA, which runs as an 
deferred, commit CA, I try to open and query the MSI database with

Database database = new Database(SomePath, DatabaseOpenMode.ReadOnly);

The constructor returns no InstallerException, so I think everything works fine 
there.
My problem is that the returned Database object has an Invalid handle, and 
therefore every operation with the database fails. Anyone experienced that and 
could explain me the issue?

Quick note: The database I try to open is not the one from which the current 
installation runs from.

Thanks in advance for any help!

Best regards,

Marcel







-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] CustomDlg in WixUI_mondo

2008-02-11 Thread Marcel Kulicke
Hi Bob,

yes, this is just the %TEMP% environment variable destination. The subfolders 
were generated by WiX during the execution of light.exe. Nothing special so 
far, I just wanted to check, whether the CheckInvalidPath function is probably 
malfunctioning because of too long filenames, which was not the cause.

Best regards,

Marcel

Marcel Kulicke
Application Development Consultant | Microsoft Premier Support for Developers
E-Mail: [EMAIL PROTECTED]mailto:[EMAIL PROTECTED] | Phone: +49 (89) 3176-4619 
| Mobile: +49 (175) 5844 559
Microsoft Deutschland GmbH | http://www.microsoft.com/germany
Konrad-Zuse-Straße 1, 85716 Unterschleißheim, Germany

Geschäftsführer: Achim Berg, Gianpietro Cussigh, Benjamin O. Orndorff , Keith 
Dolliver
Amtsgericht München, HRB 70438.

From: Bob Arnson [EMAIL PROTECTED]
Sent: 07 February 2008 05:28
To: Marcel Kulicke
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] CustomDlg in WixUI_mondo

Marcel Kulicke wrote:
Binder temporary directory located at 'C:\SystemTemp\mfvev3qd'.
Validator temporary directory located at 'C:\SystemTemp\pclycvix'.

Is C:\SystemTemp the name of your TEMP directory?


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


Re: [WiX-users] CustomDlg in WixUI_mondo

2008-02-05 Thread Marcel Kulicke
Hi Bob,

That's exactly what I did! I added my custom dialog to the main (WixUI_Mondo) 
UI and copied all the dialog related .wxs files to the project. Candle works 
fine, but light shows the mentioned errors:

* With Wix2925: LGHT0143: A parsed tuple has more fields for table 
'WixFile' than are defined. This is potencially because a standard table is 
being redefined as a custom table...

* With Wix3725: LGHT0001: Illegal characters in path
Any guesses? Or probably a way to track down the issue a little bit more? I 
cannot even say which path is being passed to 
System.IO.Path.CheckInvalidPathChars(String path) which causes the exception in 
Wix3725. The exact stack trace is the following:

light.exe : error LGHT0001 : Illegal characters in path.

Exception Type: System.ArgumentException

Stack Trace:
   at System.IO.Path.CheckInvalidPathChars(String path)
   at System.IO.Path.IsPathRooted(String path)
   at Microsoft.Tools.WindowsInstallerXml.BinderExtension.ResolveFile(String 
source)
   at Microsoft.Tools.WindowsInstallerXml.Binder.ResolveFields(TableCollection 
tables, Hashtable cabinets, ArrayList delayedFields)
   at Microsoft.Tools.WindowsInstallerXml.Binder.BindDatabase(Output output, 
String databaseFile)
   at Microsoft.Tools.WindowsInstallerXml.Binder.Bind(Output output, String 
file)
   at Microsoft.Tools.WindowsInstallerXml.Tools.Light.Run(String[] args)
Binder temporary directory located at 'C:\SystemTemp\mfvev3qd'.
Validator temporary directory located at 'C:\SystemTemp\pclycvix'.

Best regards,

Marcel

Von: Bob Arnson [mailto:[EMAIL PROTECTED]
Gesendet: Dienstag, 5. Februar 2008 05:16
An: Marcel Kulicke
Cc: wix-users@lists.sourceforge.net
Betreff: Re: [WiX-users] CustomDlg in WixUI_mondo

Marcel Kulicke wrote:
I want to extend the WixUI_mondo with a custom dialog. There is a pretty good 
sample in the WIX-sources under \examples\public\wixui\custom. But it is not 
working, since a major nant-build file is missing (src/ui/ui.build). The whole 
ui-folder is not current any more.

Where has it gone? How could I get the shipped example working?

It no longer ships in current WiX builds.


Additionally, I tried to build the whole DialogSet again myself (since I 
couldn't use the sample). But I get strange errors, when light.exe is used with 
all the dialogs in the Mondo-UI.

With Wix2925: LGHT0143: A parsed tuple has more fields for table 'WixFile' than 
are defined. This is potencially because a standard table is being redefined as 
a custom table...

With Wix3725: LGHT0001: Illegal characters in path

In WiX v3, you don't need to rebuild WixUIExtension, just copy the dialog set 
you're interested in (e.g., WixUI_Mondo.wxs), make the changes to add a dialog 
in the wizard sequence, and add that dialog and set .wxs files to your project.


--

sig://boB

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


[WiX-users] CustomDlg in WixUI_mondo

2008-02-04 Thread Marcel Kulicke
Hi Wix-Users,

I want to extend the WixUI_mondo with a custom dialog. There is a pretty good 
sample in the WIX-sources under \examples\public\wixui\custom. But it is not 
working, since a major nant-build file is missing (src/ui/ui.build). The whole 
ui-folder is not current any more.

-  Where has it gone? How could I get the shipped example working?

Additionally, I tried to build the whole DialogSet again myself (since I 
couldn't use the sample). But I get strange errors, when light.exe is used with 
all the dialogs in the Mondo-UI.

-  With Wix2925: LGHT0143: A parsed tuple has more fields for table 
'WixFile' than are defined. This is potencially because a standard table is 
being redefined as a custom table...

-  With Wix3725: LGHT0001: Illegal characters in path

Does anyone know what could have been wrong?

Thanks for any help!

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


Re: [WiX-users] Problem with localization of product name

2007-11-21 Thread Marcel Kulicke
Hi Abhradeep,

I am using LocStudio 4.8, but can't you just simply localize the 
ProductName-Property in the Property table? This works for me.

Just my 2 cent. Best Regards,

Marcel

Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Abhradeep 
Thakurta
Gesendet: Mittwoch, 21. November 2007 13:42
An: wix-users@lists.sourceforge.net
Betreff: [WiX-users] Problem with localization of product name

Hi,
   Can you please help me in finding out a way to localize the product name. We 
have used the technique of using .wxi (where the strings are defined as 
?defined ? ) file which in turn gets localized but this is not accepted by 
Microsoft Loc Studio 4.6 . So can u suggest a work around ?

Thanks and Regards,

Abhradeep Guha Thakurta

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