紫菱号带大家认识并深入了解剑灵怎么激活,希望能帮你解决当下所遇到的难题。
剑灵要怎么激活这个Enable3GBMem_Vista_Win7_32bit.bat?

剑灵_腾讯\bin\Enable3GBMem_Vista_Win7_32bit.bat
剑灵_腾讯\components\Enable3GBMem_Vista_Win7_32bit.bat
这是32位WIN7,支持4G内存的补丁(两个目录有相同的文件)
如果你的内存超过4G,建议你安装64位的WIN7,就没那么多麻烦事了。
===
下面就是这个批处理文件的内容
@echo off
setlocal
if defined ProgramW6432 goto 64bit
if not exist %SystemRoot%\system32\bcdedit.exe goto withoutbcdedit
:withbcdedit
bcdedit /set increaseUserVa 2560
if %ERRORLEVEL% == 0 (
echo Enable Success
set result = 0
) else (
echo Enable Failure
set result = 1
)
goto exit
:64bit
echo 3GB Option is not required for 64bit OS
set result = 1
goto exit
:withoutbcdedit
echo Enable Failure
set result = 1
goto exit
:exit
exit /b %result%