This page provides you with the information on how to increase the memory to 3GB in Windows machine. |
|
|
How to patch the EXE file to be run in 3 GB modePre-requisistes :
1- Check that the file where the 3GB will be applied is not corrupt : Use the dumpbin exe with /header option : if the dumpbin tool can list information about your executable, it means it is not corrupt. "dumpbin" is a program for displaying various information about object files. The script to run is : <VISUAL STUDIO INSTALL FOLDER>VC\bin\dumpbin /headers "C:\Program Files (x86)\CAST\7.3.9\AnaRun.exe"
2- To make the exe in 3G mode compatible: Use the editbin exe with /LARGEADDRESSAWARE option If the EXE that one wants to modify to put flag /3GB is AnaRun.exe or Enlighten.exe located in C:\Program Files\CAST\<CAST VERSION>\AnaRun.exe and C:\Program Files\CAST\<CAST VERSION>\Enlighten.exe : For instance, if CAST Version is 7.3.9 : <VISUAL STUDIO INSTALL FOLDER>\VC\bin>editbin /LARGEADDRESSAWARE "C:\Program Files (x86)\CAST\7.3.9\AnaRun.exe" <VISUAL STUDIO INSTALL FOLDER>\VC\bin>editbin /LARGEADDRESSAWARE "C:\Program Files (x86)\CAST\7.3.9\Enlighten.exe"
3- To put the exe in "normal" mode : <VISUAL STUDIO INSTALL FOLDER>\VC\bin>editbin /LARGEADDRESSAWARE:NO "C:\Program Files (x86)\CAST\7.3.9\AnaRun.exe" <VISUAL STUDIO INSTALL FOLDER>VC\bin>editbin /LARGEADDRESSAWARE:NO "C:\Program Files (x86)\CAST\7.3.9\Enlighten.exe"
4- Troubleshooting :
|
How to Setup the Memory to 3G for 32 Bit Windows Machine Note that these steps are not necessary for 64 bits Windows machine
|
|
|