DetailsProduct:Windows Operating SystemEvent ID:2019Source:SrvVersion:5.2Symbolic Name:EVENT_SRV_NO_NONPAGED_POOLMessage:The server was unable to allocate from the system nonpaged pool because the pool was empty. ExplanationNonpaged pool pages cannot be pages out to the paging file, but instead remain in main memory as long as they are allocated. An application is probably incorrectly making system calls and using up all allocated nonpaged pool.You might also see the following error on a local or remote system: Not enough storage available to process this command. User ActionTo find the application, use Performance Monitor to look at each application's nonpaged pool allocation. As an alternative, monitor the system with a utility such as PMON.EXE.Currently there are no Microsoft Knowledge Base articles available for this specific error or event message. For information about other support options you can use to find answers online, seehttp://support.microsoft.com/default.aspx. 再GOOGLE一下:
非页面共享区是空的,通过优化内存管理器,使它在更早的时间(比如当它达到 40% 时)开始修整过程,在突发的高峰使用期间就可以满足页面缓冲池的需求,并避免页面缓冲池内存不足的情况。
以下优化建议在减轻此问题方面很有帮助:
1. 启动注册表编辑器(Regedt32.exe)。
2. 在注册表中找到并单击以下注册表项:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\SessionManager\Memory Management
3. 在编辑菜单上,单击添加数值,然后添加下面的注册表值:
数值名称:PoolUsageMaximum
数据类型:REG_DWORD
基数:十进制
数值数据:40
将该值设置为 40 可以通知内存管理器在达到 PagedPoolMax 的 40% 而不是默认
设置 80% 时开始修整过程。
数值名称:PagedPoolSize
数据类型:REG_DWORD
基数:十六进制
数值数据:0xFFFFFFFF
将 PagedPoolSize 设置为 0xFFFFFFFF (-1) 可为计算机分配最大的页面缓冲池
以取代其他资源。
4. 退出注册表编辑器。
可以再再共享盘上设置虚拟内存,由系统管理大小。
重启电脑OK
ok解决!