Ron,<div><br></div><div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div><br>
I followed the recommendation in your link and got the following result:<br>
 <br>
C:\Python26\dist&gt;golden.exe<div class="im"><br>Traceback (most recent call last):<br></div>  File &quot;golden.py&quot;, line 2, in &lt;module&gt;<div class="im"><br>  File &quot;winsys\registry.pyc&quot;, line 39, in &lt;module&gt;<br>
  File &quot;winsys\security.pyc&quot;, line 42, in &lt;module&gt;<br>  File &quot;winsys\_security\_tokens.pyc&quot;, line 10, in &lt;module&gt;<br>  File &quot;winsys\accounts.pyc&quot;, line 31, in &lt;module&gt;<br></div>
  File &quot;winsys\dialogs.pyc&quot;, line 46, in &lt;module&gt;<br>  File &quot;win32ui.pyc&quot;, line 12, in &lt;module&gt;<br>  File &quot;win32ui.pyc&quot;, line 10, in __load<br>ImportError: DLL load failed: This application has failed to start because the a<br>
pplication configuration is incorrect. Reinstalling the application may fix this<br> problem.<br>
 <br>
Can you think of anything else to try? Thanks!<br>
 <br>
</div></blockquote><div>yes. This is a totally different kind of problem. Two likely reasons: </div><div><br></div><div>a) the DLLs from Microsoft Visual C are missing. </div><div>b) the manifest included in your .exe is not working with the visual-C DLLs of Python 2.6</div>
<div><br></div><div>Correct and offical solution for a): get vcredist from Microsoft, and run it.</div><div><br></div><div>Solution I usually use: </div><div><br></div><div>- copy msvcp90.dll, msvcr90.dll and Microsoft.VC90.CRT.manifest into the directory of your .exe</div>
<div><br></div><div><br></div><div>Solution for b)</div><div>use this manifest in your setup.py:<br></div><div><br></div><div><div>manifest_template = &#39;&#39;&#39;</div><div>&lt;assembly xmlns=&quot;urn:schemas-microsoft-com:asm.v1&quot;</div>
<div>manifestVersion=&quot;1.0&quot;&gt;</div><div>  &lt;assemblyIdentity</div><div>    version=&quot;0.6.8.0&quot;</div><div>    processorArchitecture=&quot;x86&quot;</div><div>    name=&quot;%(prog)s&quot;</div><div>    type=&quot;win32&quot;</div>
<div>  /&gt;</div><div>  &lt;description&gt;MyCare Card Browser Program&lt;/description&gt;</div><div>  &lt;trustInfo xmlns=&quot;urn:schemas-microsoft-com:asm.v3&quot;&gt;</div><div>    &lt;security&gt;</div><div>      &lt;requestedPrivileges&gt;</div>
<div>        &lt;requestedExecutionLevel</div><div>          level=&quot;asInvoker&quot;</div><div>          uiAccess=&quot;false&quot;</div><div>        /&gt;</div><div>      &lt;/requestedPrivileges&gt;</div><div>    &lt;/security&gt;</div>
<div>  &lt;/trustInfo&gt;</div><div>  &lt;dependency&gt;</div><div>    &lt;dependentAssembly&gt;</div><div>      &lt;assemblyIdentity</div><div>        type=&quot;win32&quot;</div><div>        name=&quot;Microsoft.VC90.CRT&quot;</div>
<div>        version=&quot;9.0.21022.8&quot;</div><div>        processorArchitecture=&quot;x86&quot;</div><div>        publicKeyToken=&quot;1fc8b3b9a1e18e3b&quot;</div><div>      /&gt;</div><div>    &lt;/dependentAssembly&gt;</div>
<div>  &lt;/dependency&gt;</div><div>  &lt;dependency&gt;</div><div>    &lt;dependentAssembly&gt;</div><div>      &lt;assemblyIdentity</div><div>        type=&quot;win32&quot;</div><div>        name=&quot;Microsoft.Windows.Common-Controls&quot;</div>
<div>        version=&quot;6.0.0.0&quot;</div><div>        processorArchitecture=&quot;x86&quot;</div><div>        publicKeyToken=&quot;6595b64144ccf1df&quot;</div><div>        language=&quot;*&quot;</div><div>      /&gt;</div>
<div>    &lt;/dependentAssembly&gt;</div><div>  &lt;/dependency&gt;</div><div>&lt;/assembly&gt;</div><div>&#39;&#39;&#39; </div><div><br></div><div>RT_MANIFEST = 24</div></div><div><br></div><div>and within the setup-dictionary ...</div>
<div><br></div><div><div>wxreport = dict(</div><div>    script = &quot;yourscript.py&quot;,</div><div>    other_resources = [</div><div>                (RT_MANIFEST, 1, manifest_template % dict(prog=&quot;your Progname&quot;)),</div>
<div>    ],</div><div>    dest_base = r&quot;yourdestination&quot;,</div><div>&lt;--other options--&gt;</div><div>    )</div><div><br></div></div><div>best wishes,</div><div><br></div><div>Harald</div><div><br></div><div>
<div><br></div></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div> <br>
Ron<br><div class="hm"> <br>
<hr>
Date: Tue, 30 Mar 2010 17:22:28 +0200<br>Subject: Re: [python-win32] Attempt to make executable from Python script<br>From: <a href="mailto:chef@ghum.de" target="_blank">chef@ghum.de</a><br>To: <a href="mailto:europe_travel@hotmail.com" target="_blank">europe_travel@hotmail.com</a><br>
CC: <a href="mailto:python-win32@python.org" target="_blank">python-win32@python.org</a></div><div><div></div><div class="h5"><br><br>Hello Travel Europe,
<div><br></div>
<div>that is a documented challenge with the excellent WinShell module from Tim Golden.</div>
<div><br></div>
<div>I described in detail how to solve it at:</div>
<div><br></div>
<div><a href="http://www.py2exe.org/index.cgi/WinShell" target="_blank">http://www.py2exe.org/index.cgi/WinShell</a><br>
<div><br></div>
<div>best wishes,</div>
<div><br></div>
<div>Harald</div>
<div><br>
<div>On Tue, Mar 30, 2010 at 07:39, travel europe <span dir="ltr">&lt;<a href="mailto:europe_travel@hotmail.com" target="_blank">europe_travel@hotmail.com</a>&gt;</span> wrote:<br>
<blockquote style="padding-left:1ex;border-left:#ccc 1px solid">
<div>Hello,<br> <br>I am attempting to make an executable from a working Python script per the instructions from the following website:<br> <br>  <a href="http://logix4u.net/Python/Tutorials/How_to_create_Windows_executable_exe_from_Python_script.html" target="_blank">http://logix4u.net/Python/Tutorials/How_to_create_Windows_executable_exe_from_Python_script.html</a><br>
 <br>Everything seems to go as planned, except when I run the resulting executable I get the following message:<br> <br>Traceback (most recent call last):<br>  File &quot;tim.py&quot;, line 2, in &lt;module&gt;<br>  File &quot;winsys\registry.pyc&quot;, line 39, in &lt;module&gt;<br>
  File &quot;winsys\security.pyc&quot;, line 42, in &lt;module&gt;<br>  File &quot;winsys\_security\_tokens.pyc&quot;, line 10, in &lt;module&gt;<br>  File &quot;winsys\accounts.pyc&quot;, line 31, in &lt;module&gt;<br>  File &quot;winsys\dialogs.pyc&quot;, line 45, in &lt;module&gt;<br>
<strong>ImportError: No module named shell</strong><br> <br> <br>Any suggestions? Thanks!<br>
<div><br>
<hr>
Hotmail has tools for the New Busy. Search, chat and e-mail from your inbox. <a href="http://www.windowslive.com/campaign/thenewbusy?ocid=PID27925::T:WLMTAGL:ON:WL:en-US:WM_HMP:032010_1" target="_blank">Learn More.</a></div>
</div><br>_______________________________________________<br>python-win32 mailing list<br><a href="mailto:python-win32@python.org" target="_blank">python-win32@python.org</a><br><a href="http://mail.python.org/mailman/listinfo/python-win32" target="_blank">http://mail.python.org/mailman/listinfo/python-win32</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>GHUM Harald Massa<br>persuadere et programmare<br>Harald Armin Massa<br>Spielberger Straße 49<br>70435 Stuttgart<br>0173/9409607<br>no fx, no carrier pigeon <br>-<br>%s is too gigantic of an industry to bend to the whims of reality<br>
</div></div>                                               <br><hr>Hotmail has tools for the New Busy. Search, chat and e-mail from your inbox. <a href="http://www.windowslive.com/campaign/thenewbusy?ocid=PID27925::T:WLMTAGL:ON:WL:en-US:WM_HMP:032010_1" target="_blank">Learn More.</a></div>
</div></div>
</blockquote></div><br><br clear="all"><br>-- <br>GHUM Harald Massa<br>persuadere et programmare<br>Harald Armin Massa<br>Spielberger Straße 49<br>70435 Stuttgart<br>0173/9409607<br>no fx, no carrier pigeon <br>-<br>%s is too gigantic of an industry to bend to the whims of reality<br>

</div>