Como habilitar o sinalizador COMPLUS_ENABLE_64bit?

1

Eu tive um problema com um aplicativo em execução no Windows Server 2008 R2. Eu encontrei do site da IBM que a razão para este problema era que o aplicativo era de 32 bits e Win Server 64 bits. A orientação foi:

Method #2

Modify the 64-bit client device (for example Windows 2003 64-bit Citrix/Terminal Server) to automatically run all website's .NET code as 32 bit

Steps:

  1. Logon to the 64-bit (operating system) client device as an administrator

  2. Start - Run "CMD" (to launch a command prompt)

  3. Change directory to C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\
  4. Ldr64.exe setwow

This will disable the "COMPLUS_ENABLE_64BIT" flag and cause all .NET code to run as 32-bit on this 64-bit client device.

Gostaria de saber como posso ativar este COMPLUS_ENABLE_64BIT novamente?

    
por jrara 14.03.2013 / 10:48

1 resposta

1

Você repete os três primeiros passos e executa o Ldr64 com diferentes argumentos:

Ldr64.exe Set64

Isso restaurará a capacidade de executar o tempo de execução de 64 bits.

    
por 20.03.2013 / 01:43