Hey y'all, I have a program that I downloaded of which the .exe file is the entire program. It is not an install executable. On my Windows machine it simply runs the program when opened. How do I set up this executable in Wine? Thus far I get the error:
user@user:~$ wine thumbcache_viewer.exe
fixme:actctx:parse_depend_manifests Could not find dependent assembly L"Microsoft.VC90.CRT"
err:module:import_dll Library MSVCR90.dll (which is needed by L"C:\\Program Files\\thumbcache_viewer.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program Files\\thumbcache_viewer.exe" failed, status c0000135
Thoughts?
Setting up a non-install .exe?
-
- Level 2
- Posts: 10
- Joined: Sun May 15, 2011 3:13 pm
Setting up a non-install .exe?
On 06/21/2011 01:37 PM, mpercy725 wrote:
it like any other executable, and the way you are invoking it is correct.
the problem is that you're missing a file: as you can see in the
second-to-last line of your output there, MSVCR90.dll isn't being found.
So, you'll need a copy of that library for your program to work.
- Anna
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 899 bytes
Desc: OpenPGP digital signature
URL: <http://www.winehq.org/pipermail/wine-us ... chment.pgp>
You don't do anything special to run such an executable - wine handlesHey y'all, I have a program that I downloaded of which the .exe file is the entire program. It is not an install executable. On my Windows machine it simply runs the program when opened. How do I set up this executable in Wine? Thus far I get the error:
user@user:~$ wine thumbcache_viewer.exe
fixme:actctx:parse_depend_manifests Could not find dependent assembly L"Microsoft.VC90.CRT"
err:module:import_dll Library MSVCR90.dll (which is needed by L"C:\\Program Files\\thumbcache_viewer.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program Files\\thumbcache_viewer.exe" failed, status c0000135
it like any other executable, and the way you are invoking it is correct.
the problem is that you're missing a file: as you can see in the
second-to-last line of your output there, MSVCR90.dll isn't being found.
So, you'll need a copy of that library for your program to work.
- Anna
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 899 bytes
Desc: OpenPGP digital signature
URL: <http://www.winehq.org/pipermail/wine-us ... chment.pgp>
Setting up a non-install .exe?
That is part of the visual studio 2008 runtime (not sure if you needthe problem is that you're missing a file: as you can see in the
second-to-last line of your output there, MSVCR90.dll isn't being found.
So, you'll need a copy of that library for your program to work.
the sp1 or not) which is available via winetricks.
John