Search found 5 matches

by baykiwi
Thu Nov 24, 2016 4:05 am
Forum: Enigma Virtual Box x86/x64
Topic: Executable gives DLL load failed when run on another PC
Replies: 6
Views: 19814

Re: Executable gives DLL load failed when run on another PC

Hi I now have the "console" code with built-in socket import running on WinXT Professional V2002 SP 3. To do this I resurrected a VirtualBox WinXT image and loaded Python2.7, PyInstaller and Enigma Virtual Box and rebuilt the boxed image. As a matter of interest I then copied the image acr...
by baykiwi
Wed Nov 23, 2016 9:30 am
Forum: Enigma Virtual Box x86/x64
Topic: Executable gives DLL load failed when run on another PC
Replies: 6
Views: 19814

Re: Executable gives DLL load failed when run on another PC

Hi Taking the two Enigma encapsulated PyInstaller executables from my last post (one with and one without "import socket") and running them on a Windows (64 bit) Server 2012, both programs ran without error. This server did not have Python2.7 installed. Summarising: The software without th...
by baykiwi
Tue Nov 22, 2016 3:10 am
Forum: Enigma Virtual Box x86/x64
Topic: Executable gives DLL load failed when run on another PC
Replies: 6
Views: 19814

Re: Executable gives DLL load failed when run on another PC

Hi folks Further to my last post I have now used PyInstaller to make an application console.exe based on the code: import code vars = globals().copy() vars.update(locals()) shell = code.InteractiveConsole(vars) shell.interact() I then used Enigma to take all the output files from PyInstaller to make...
by baykiwi
Mon Nov 21, 2016 10:03 pm
Forum: Enigma Virtual Box x86/x64
Topic: Executable gives DLL load failed when run on another PC
Replies: 6
Views: 19814

Re: Executable gives DLL load failed when run on another PC

Hi folks I have used PyInstaller to make an executable of the following script (on Win7): import socket, time print 'socket module import successful' time.sleep(10.0) The distribution directory contains: _hashlib.pyd _socket.pyd _ssl.pyd bz2.pyd Microsoft.VC90.CRT.manifest msvcm90.dll msvcp90.dll ms...
by baykiwi
Thu Nov 17, 2016 12:24 am
Forum: Enigma Virtual Box x86/x64
Topic: Executable gives DLL load failed when run on another PC
Replies: 6
Views: 19814

Executable gives DLL load failed when run on another PC

Hi I am trying to use Enigma Virtual Box 7.70 to make a cut-down portable version of python2.7. I included a copy of all the necessary .pyc, .dll files as well as _socket.pyd, _ssl.pyd into the default directory and created an executable that runs on the host machine (Win7 64bit). Copying the execut...