|  | 
| 原帖由 沙漠之子 于 2006-12-14 08:18 PM 发表不知大大加了什么,使得ShutdownGUI.exe能用了
ASYCFILT.DLL
 
 
 
 
 SIZING
 ;======
 ;
 ; 8Mb - This is apparently not possible, the XPe documentation
 ;     says FBWF sizes are from 16Mb - 1024Mb only.
 ;       Trying to force it with Target Designer reverts it to 16Mb.
 ;    To be honest i didnt bother fiddling this low in real world testing.
 :
 ; Valid sizes are:
 ;
 ; 0x10 = 16Mb
 ; 0x18 = 24Mb
 ; 0x20 = 32Mb
 ; 0x30 = 48Mb
 ; 0x40 = 64Mb
 ; 0x48 = 72Mb
 ; 0x60 = 96Mb
 ; 0x80 = 128Mb
 ; 0x100 = 256Mb
 ;
 ; The following line sets the cachesize to 64Mb, theoretically
 ; you could leave this out and it will still do 64Mb, but
 ; in my testing, it would revert to 32Mb, not the 64Mb
 ; according to the documentation.
 
 0x4,"ControlSet001\Services\FBWF","WinPECacheThreshold", 0x40
 
 
 
 
 多少不是关键,关键是要动态分配,就算是按可用内存的%比分配也不好用,因为它分配到X:的可用空间比它占用的内存小。按可用内存的%比分配不如用B盘,B盘也可按可用内存的%比分配。30M的可用空间本来就是动态分配的,按%比分配只是分配最大可用内存
 | 
 |