解决内存不能为Read 问题三步法
这是我在几台电脑成功解决内存不能为Read 问题,给有问题的会员试试,欢迎大家试用回贴讨论。
请在使用时关闭所有使用程序,包括杀毒软件,防火墙,QQ等
1. 在[开始]-->[运行]-->键入‘cmd ’ 然后回车在命令提示符下输入
for %1 in (%windir%\system32\*.dll) do regsvr32.exe /s %1 按回车开始运行。
2.、清除内存内被不使用的DLL文件
在[开始]-->[运行]-->键入[Regedit]-->[HKKEY_LOCAL_MACHINE]-->[SOFTWARE]-->[Microsoft]-->[Windows]-->[CurrentVersion],在[Explorer]增加一个项[AlwaysUnloadDLL],默认值设为1。
注:如由默认值设定为[0]则代表停用此功能。
[attach]186080[/attach]
3.系统服务自动优化批处理文件内容如下
@echo off
cls
color 2f
echo.
echo.
echo ==================================
echo WINDOS XP 服务自动优化关闭无用服务
echo ==================================
echo.
echo.
echo.
echo ================================
echo 正在关闭无用服务,请稍候......
echo ================================
echo.
sc config Alerter start= AUTO
sc config ALG start= DEMAND
sc config AppMgmt start= DEMAND
sc config AudioSrv start= AUTO
sc config BITS start= DEMAND
sc config Browser start= AUTO
sc config CiSvc start= DISABLED
sc config ClipSrv start= DISABLED
sc config COMSysApp start= DEMAND
sc config CryptSvc start= DEMAND
sc config DcomLaunch start= AUTO
sc config Dhcp start= AUTO
sc config dmadmin start= DEMAND
sc config dmserver start= AUTO
sc config Dnscache start= AUTO
sc config ERSvc start= DISABLED
sc config Eventlog start= AUTO
sc config EventSystem start= AUTO
sc config helpsvc start= DEMAND
sc config HidServ start= DISABLED
sc config HTTPFilter start= DEMAND
sc config ImapiService start= DISABLED
sc config lanmanserver start= DEMAND
sc config lanmanworkstation start= AUTO
sc config LmHosts start= AUTO
sc config Messenger start= DEMAND
sc config mnmsrvc start= DISABLED
sc config MSDTC start= DEMAND
sc config MSIServer start= DEMAND
sc config NetDDE start= DISABLED
sc config NetDDEdsdm start= DISABLED
sc config Netlogon start= DEMAND
sc config Netman start= DEMAND
sc config Nla start= DEMAND
sc config NtLmSsp start= DEMAND
sc config NtmsSvc start= DEMAND
sc config PlugPlay start= AUTO
sc config PolicyAgent start= AUTO
sc config ProtectedStorage start= AUTO
sc config RasAuto start= DEMAND
sc config RasMan start= DEMAND
sc config RDSessMgr start= DEMAND
sc config remoteAccess start= DISABLED
sc config remoteRegistry start= DISABLED
sc config RpcLocator start= DEMAND
sc config RpcSs start= AUTO
sc config SamSs start= AUTO
sc config SCardSvr start= DISABLED
sc config Schedule start= AUTO
sc config seclogon start= AUTO
sc config SENS start= AUTO
sc config SharedAccess start= DEMAND
sc config ShellHWDetection start= AUTO
sc config Spooler start= DEMAND
sc config stisvc start= DEMAND
sc config swprv start= DEMAND
sc config SysmonLog start= DEMAND
sc config TapiSrv start= DEMAND
sc config TermService start= DEMAND
sc config Themes start= AUTO
sc config TrkWks start= DISABLED
sc config UMWdf start= DEMAND
sc config UPS start= DEMAND
sc config VSS start= DEMAND
sc config W32Time start= DEMAND
sc config WebClient start= DISABLED
sc config winmgmt start= AUTO
sc config WmdmPmSN start= DEMAND
sc config Wmi start= DEMAND
sc config WmiApSrv start= DEMAND
sc config wuauserv start= DEMAND
sc config WZCSVC start= DEMAND
sc config xmlprov start= DEMAND
sc config DcomLaunch start= AUTO
sc config FastUserSwitchingCompatibility start= DEMAND
sc config srservice start= DISABLED
sc config SSDPSRV start= DISABLED
sc config TlntSvr start= DISABLED
sc config upnphost start= DEMAND
sc config wscsvc start= DEMAND
sc config ShadowSystemService start= DEMAND
cls
echo.
echo ===========================
echo WINDOS XP 服务自动优化完毕!
echo ===========================
echo.
echo.
echo.
echo.
echo.
echo ============================================
echo 自动优化程序
echo.
echo ============================================
echo
echo.
echo.
cls
exit
在开始--程序---附件---记事本点鼠标右键,选择新建一个“记事本”,把上面的字复制进去,保存为“XP服务优化.bat” 结束后重启电脑。OK