Force C # application to run in 32-bit mode on a 64-bit server

Our client uses an old version of our software that was created with the target β€œAny CPU”. The software uses the Microsoft Tablet SDK, which is only 32-bit.

They are trying to install this on a 64-bit computer and, obviously, have problems because the 32-bit SDK is not displayed for our software working in 64-bit mode.

Restoring their software version is not an option (source dependent), but they plan to upgrade in the future.

So I need a temporary workaround to get this application to work in 32-bit mode.

I tried to run it from a 32-bit command line, but it still runs in 64-bit mode.

Any ideas?

+4
source share
1 answer

Try using the CorFlags.exe tool to force the assembly to load in 32-bit mode.

+9
source

Source: https://habr.com/ru/post/1485408/


All Articles