2012/1/18 Grégory Starck <[email protected]>:
> Le 18 janvier 2012 17:49, Anthony Tuininga <[email protected]> a
> écrit :
>>
>> Hi,
>>
>> That error is likely due to the fact that you don't have the Visual
>> Studio redistributable installed on the target machine. I believe the
>> one you want is for 2008.
>>
>> Anthony
>
> Hi,
>
> very good that was it !  :) :)
>
> and effectively having an eye within eventviewer of windows  shows me some
> related logs. though they are also quite cryptic, like :
> """Generate Activation Context failed for "my exe application path".
> Referenced error message is : Operation successfull"""

You could try using "dependency walker"
(http://www.dependencywalker.com) on the exe and all DLLs/pyd files to
find the missing things.  You would have found the name of the DLL
that was missing.  There are false positives, though.  One one of my
machines it normally finds "IESHIMS.DLL" and "WER.DLL" missing, but it
seems that they are not actually necessary.

> I've so installed "Microsoft Visual C++ 2008 Redistributable Package
> (x86)" and with that the exe runs ok without python installed on the target
> machine.
> So now I could more precisely look what exact files my exe needs from that
> package..

It would be better to make the MS VC++ redistributable package a
dependency of your app.  e.g. if you use WiX to make an MSI package
for your app you can tell it to depend on the VC++ redistributable
package.  This way Windows Update can install security fixes for the
VC++ redist. package if necessary.

-- 
Michael Wood <[email protected]>

------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
cx-freeze-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/cx-freeze-users

Reply via email to