bcwiniger
bcwiniger

Reputation: 169

WiX failing to install as 64 bit

I have a Windows service installed via WiX built .msi. I am trying to install the service as 64 bit, but am failing miserably for some reason.

Actual .wixproj file has the needed build attributes:

The .wxs file has the necessary information:

The project containing the service .exe builds as AnyCPU

The environment (Windows Server '08 R2) is 64 bit.

The actual build, of both the .exe and the .wixproj both go fine.

The install goes fine.

But when I go to view the actual service via Task Manager it is tagged with *32. Is there something that I am missing here that is preventing my application from installing as a 64 bit process/causing it to install as 32 bit?

Upvotes: 0

Views: 773

Answers (1)

Jordan
Jordan

Reputation: 358

This is not because of WiX. This is because you built the program as AnyCPU. See this answer for more details.

Build platform target AnyCPU EXE still shows 32bit header in 64bit machine

Upvotes: 2

Related Questions