Setting up a non-install .exe?

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
mpercy725
Newbie
Newbie
Posts: 1
Joined: Tue Jun 21, 2011 12:27 pm

Setting up a non-install .exe?

Post by mpercy725 »

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?
annabunches
Level 2
Level 2
Posts: 10
Joined: Sun May 15, 2011 3:13 pm

Setting up a non-install .exe?

Post by annabunches »

On 06/21/2011 01:37 PM, mpercy725 wrote:
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
You don't do anything special to run such an executable - wine handles
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>
John Drescher

Setting up a non-install .exe?

Post by John Drescher »

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.
That is part of the visual studio 2008 runtime (not sure if you need
the sp1 or not) which is available via winetricks.

John
Locked