Message: "..not enough server storage is available to process this command..."
Problem: This error message can occure if you try to access a share on a Windows NT server from a Windows NT client.
Cause: The reason why this might happend is probably that the IRPStackParameter is to low. The following message appear in the event log:
Event ID: 2011 Source: Srv
The server's configuration parameter "irpstacksize" is too small for the server to use a local device. Please increase the value of this parameter.
Solution: You must start the registry editor (Regedit or Regedt32) and go to:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters
If the values is not present the default are 0x4 (valid range are 0x1 to 0xC).
If the key is not present, choose Add Value in the Registry Editor. The Value Name should be IRPStackSize and the Data Type is DWORD. Try gradually increasing the value of IrpStackSize in order to find the minimal value which resolves the problem.
References:
Microsoft TechNet, Article Q106167
|