vote up 2 vote down star
1

I've been given a windows service which references a COM component that only runs on 32-bit. My machine is x64, so the service tries to start, fails to create the COM component, and dies.

I don't have the source, just the .exe file. Is there any way to force a service to start in 32-bit mode on a win64 machine?

flag

4 Answers

vote up 4 vote down check

Maybe the .NET tool corflags will help:

corflags /32bit+ myservice.exe

link|flag
wow. who knew such evil magic existed? – Dave Markle Jul 4 at 1:49
vote up -1 vote down

Is there any way to force a service develped in visual basic 6 to start in 32-bit mode on a win64 machine?

I believe the corflags tool works only for a .NET service.

Thanks Dietmar

link|flag
Hi -- this is a question, not an anwer. Start a new question. – Steve Cooper Nov 5 at 17:37
vote up 4 vote down

Maybe this is an option:

Running NET Apps in 32 bit mode on 64bit Windows

link|flag
thanks -- this is the right answer. Thomas Freudenberg also gave the right answers, and unfortunately I can't mark both as the accepted answer. Apologies for that, but I have upvoted you. – Steve Cooper Jul 3 at 12:48
vote up 0 vote down

Well, why not just compile the service as a 32-bit service?

link|flag
because I don't have the source. I've just got an .exe. – Steve Cooper Jul 3 at 12:07
If it's .Net, have you tried to decompile the exe and then recompile it in 32-bit? – dex Jul 3 at 12:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.