windows 发生系统错误 1450。系统资源不足,无法完成请求的服务

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/19845580/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-09 11:03:59  来源:igfitidea点击:

System error 1450 has occurred. Insufficient system resources exist to complete the requested service

windowsresourcesout-of-memory

提问by Cybergatto

When i try to access to a network share by typing:

当我尝试通过键入以下内容访问网络共享时:

net use \servername\sharename

I get the error:

我收到错误:

System error 1450 has occurred.
Insufficient system resources exist to complete the requested service.

If I reboot the system the mount will work fine for a while, then the error appears again.

如果我重新启动系统,安装会正常工作一段时间,然后再次出现错误。

I've already udpated my system (WIN 2008 R2) to the latest available patch, and I've also followed all the solutions reported here:

我已经将我的系统 (WIN 2008 R2) 更新为最新的可用补丁,并且我还遵循了此处报告的所有解决方案:

robocopy script : Insufficient system resources

robocopy 脚本:系统资源不足

采纳答案by geethu

Please try to perform the following steps:

请尝试执行以下步骤:

1.Click Start, click Run, type regedit, and then click OK.

1.单击开始,单击运行,键入regedit,然后单击确定。

2.Locate and then click the following registry subkey:

2.找到并单击以下注册表子项:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management

3.On the Edit menu, point to New, and then click DWORD Value.

3. 在编辑菜单上,指向新建,然后单击 DWORD 值。

4.In the New Value #1 box, type PoolUsageMaximum, and then press ENTER.

4. 在新值 #1 框中,键入 PoolUsageMaximum,然后按 ENTER。

5.Right-click PoolUsageMaximum, and then click Modify.

5. 右键单击​​ PoolUsageMaximum,然后单击修改。

6.In the Base box, click Decimal, type 60 in the Value data box, and then click OK.

6. 在 Base 框中,单击 Decimal,在 Value data 框中键入 60,然后单击 OK。

7.If the PagedPoolSize registry entry exists, go to step 8. If the PagedPoolSize registry entry does not exist, create it.

7.如果PagedPoolSize注册表项存在,则转到步骤8。如果PagedPoolSize注册表项不存在,则创建它。

To do this, follow these steps:

为此,请按照下列步骤操作:

?On the Edit menu, point to New, and then click DWORD Value. ?In the New Value #1 box, type PagedPoolSize, and then press ENTER.

?在“编辑”菜单上,指向“新建”,然后单击“DWORD 值”。? 在新值 #1 框中,键入 PagedPoolSize,然后按 Enter。

8.Right-click PagedPoolSize, and then click Modify.

8. 右键单击​​ PagedPoolSize,然后单击修改。

9.In the Value data box, type ffffffff, and then click OK.

9. 在数值数据框中,键入 ffffffff,然后单击确定。

10.Exit Registry Editor, and then restart the computer.

10.退出注册表编辑器,然后重新启动计算机。

回答by WTR

This could be a number of things. I don't have one specific answer. If this is a VM, get a backup before performing any of the below fixes. Same thing if this is a physical box.

这可能是很多事情。我没有一个具体的答案。如果这是虚拟机,请在执行以下任何修复之前进行备份。如果这是一个物理盒子,同样的事情。

  1. It could be a Service running that is consuming all the memory, maybe check (mscorsvw.exe)
  2. It could be SQL Mgmt Studio, in which you would need to uninstall it and then re-install. Check to see after you uninstall it that you still get the same error message.
  3. It could be what a lot of posts online talk about a software hive corruption. Which a lot have resolved the problem with restoring the software hive. I think you can restore a copy of the file from "%windir%\system32\config\regback" to "%windir%\system32\config"
  4. Maybe this, I don't think its this, but this info might help troubleshoot - http://support.microsoft.com/kb/2002606
  5. I am leaning towards this resolution the most as I mentioned in number 3 - http://support.microsoft.com/kb/304101
  1. 可能是正在运行的服务正在消耗所有内存,也许检查 (mscorsvw.exe)
  2. 它可能是 SQL Mgmt Studio,您需要在其中卸载它然后重新安装。检查卸载后是否仍然收到相同的错误消息。
  3. 这可能是许多在线帖子谈论软件配置单元损坏的原因。其中很多已经解决了恢复软件配置单元的问题。我认为您可以将文件的副本从“%windir%\system32\config\regback”恢复到“%windir%\system32\config”
  4. 也许这个,我不认为是这个,但这个信息可能有助于解决问题 - http://support.microsoft.com/kb/2002606
  5. 正如我在第 3 条中提到的那样,我最倾向于这个决议 - http://support.microsoft.com/kb/304101

I hope something here helps you out.

我希望这里的东西可以帮助你。