Thanks.
@echo offecho ------------------------------------------echo --- This will allow Oblivion to use more ---echo ------ than 2GB addressable space --------echo ------------------------------------------echo.echo.echo Make a backup of your original FalloutNV.exe.echo Please make sure that the FalloutNV.exe has been copied to this folder.echo Then press any key to continue.pause > nul:menuclsecho ------------------------------------------echo --- This will allow Oblivion to use more ---echo ------ than 2GB addressable space --------echo ------------------------------------------echo.echo.echo Choose what to do with large address header...echo.choice /n /c:arvde Choose (A) to Add, (R) to Remove, (V) to View current header, (D) for directions, or (E) to exit program:REM check for fileIF NOT EXIST FalloutNV.exe goto exitoutif errorlevel 5 exitif errorlevel 4 goto directionsif not errorlevel 4 if errorlevel 3 goto viewif not errorlevel 3 if errorlevel 2 goto removeif not errorlevel 2 if errorlevel 1 goto add:directionsclsecho This allows you to alter the header of the executable to allow Oblivion to address more than 2GB of RAM.echo. echo Add - adds the functionalityecho. echo Remove - removes the functionality (or use a backed up original FalloutNV.exe)echo. echo View - dumps the headers of the executable. When viewing the dump scroll all the way up echo and look for the line that says "Application can handle large (>2GB) addresses".echo This means the application can now address more than 2GB and it is enabled.echo.echo.echo *Remember to edit your boot.ini to add the /3GB switch allowing XP to use 3GB for applications.echo.echo.pausegoto menu:viewclsdumpbin /headers FalloutNV.exeecho.echo ______________________________________________________________________echo INSTRUCTIONS...echo.echo Scroll to the top and look for section "FILE HEADER VALUES". echo Then look for a line in that section that says "Application can handle large (>2GB) addresses".echo If you see that line then the executable is enabled to handle greater than 2GB, you are done.echo.pausegoto menu:removeclseditbin /LARGEADDRESSAWARE:no FalloutNV.exeecho Large Address Aware has been removed.echo.pausegoto menu:addclseditbin /LARGEADDRESSAWARE FalloutNV.exeecho Large Address Aware has been enabled.echo.pausegoto menu:exitoutclsecho The FalloutNV.exe has not been copied to this folder.echo Press any key to exit.pause > nulexit