|
原帖由 lxl1638 于 2006-12-23 12:05 AM 发表
这个fbwf缓存设置了多大?64M或以下才安全,超64M都容易出错。
我fbwf设置为内存大小,如我用的是512m内存,fbwf就设为512m,它不一定要用满512m才满,内存不足时就会提示磁盘空间不足,但不会蓝屏,这时只要及时清理文件就不会出错。所以干脆设最大来充分利用内存。fbwf.sys引起的蓝屏原因我认为是在没设置虚拟内存时它试图往虚拟内存中写东西,当然会出错了。只要修改注册表就能解决问题。
在fbwf插件里添加以下几行:
[SetupReg.AddReg]
0x4, "ControlSet001\Control\Session Manager\Memory Management","DisablePagingExecutive", 0x00000001
0x4, "ControlSet001\Control\Session Manager\Memory Management","NonPagedPoolQuota", 0x00000001
0x4, "ControlSet001\Control\Session Manager\Memory Management","NonPagedPoolSize", 0x00000001
0x4, "ControlSet001\Control\Session Manager\Memory Management","PagedPoolQuota", 0x00000000
0x4, "ControlSet001\Control\Session Manager\Memory Management","PagedPoolSize", 0x00000000
0x4, "ControlSet001\Control\Session Manager\Memory Management","SystemPages", 0x00000000
0x4, "ControlSet001\Control\Session Manager\Memory Management","SessionViewSize", 0x00000000
0x4, "ControlSet001\Control\Session Manager\Memory Management","SessionPoolSize", 0x00000000 |
|