|  | 
| CACHE内存大小是否和这有关系? 0x4,"ControlSet001\Services\FBWF","WinPECacheThreshold",0x20
 其中 0x20 为 32M
 0x10 - 16М
 0x18 - 24М
 0x20 - 32М
 0x30 - 48М
 0x40 - 64М
 0x48 - 72М
 0x60 - 96М
 0x80 -128М
 0x100 - 256М
 
 试了16M的,成功了,
 
 补充fbwf的二个参数:
 
 ControlSet001\Services\FBWF","WinPECacheThreshold",0x00000050
 
 这个是光盘最大的可些size,不设置的时候是32M。(在10进制下33代表32M)
 
 如果要调整光盘的可写空间设置这里就可以了(启动后内存并不会占用,而是用多少算多少)
 
 ControlSet001\Services\FBWF","CacheType", 0x1
 
 ; "Apparently" you can either Pre-Allocate the cache to full size,
 ; say 64Mb and it starts off at 64Mb, or you can set it to grow
 ; dynamically, where it dynamically increases. You can also try
 ; the dynamically compressed setting, but this may come with a
 ; performance hit, meaning file access will be slower, but this
 ; setting is better for lower RAM systems.
 
 1 的时候是动态分配内存
 2 的时候是动态分配内存加内存压缩(内存比较小就有用了)
 3 的时候是马上占用所有fbwf需要的内存(基本不考虑用了)
 
 
 请问这个值是2和1有什么区别,只是压缩吗?
 如果这样,那就设2算了
 | 
 |