Windows error 0x000005AA, 1450

Detailed Error Information

NO_SYSTEM_RESOURCES[1]

MessageInsufficient system resources exist to complete the requested service.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x800705AA.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code1450 (0x05aa)

Questions

4votes
4answers

robocopy script : Insufficient system resources

I have a script that was working before. A robocopy script. The backup server broke and the new one misses some configuration, but I'm not a windows guy. :'( The script is the following: C:\Windows\system32\Robocopy F:\Equipos \\NASSERVERBACKUP\F$\BACKUPS_NASSERVER\Equipos_Horario *.* /purge /tee /e /log:F:\ScriptBackup\LogsBackup\NASSERVERBACKUP_horario.txt /nfl /r:1 /w:1 And the output is this: [...] read more
windows
backup
robocopy
1vote
1answer

How can I debug the cause of a 0xc0000417 exit code

I get an exit error code 0xc0000417 (which translates to STATUS_INVALID_CRUNTIME_PARAMETER) in my executable (mixed Fortran/C) and try to find out what's causing it. It seems to occur when trying to write to a file which I infer because the file is created but there's nothing in it. Yet I [...] read more
c
visual-studio
debugging
runtime-error
0votes
1answer

SCardTransmit returns error 0x000005aa

I am trying to connect and send command to smart Card through Windows smart Card api , below is the code i have from MSDN. Here the SCardTransmit function always Returns me 0x000005aa , can some one let me know what i am doing wrong. int _tmain(int argc, _TCHAR* argv[]) [...] read more
c++

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0