Descriptions of error codes returned by regsvr32

2

Where can I find documentation that describes the meaning of error codes returned by regsvr32, such as 0x80070716?

documentation
error-code
regsvr32
asked on Stack Overflow Aug 16, 2010 by M. Dudley • edited Jul 3, 2015 by Mogsdad

2 Answers

2

The error is defined in winerror.h. Microsoft's reference is at System Error Codes.

In my case the error code is 0x0716, which is 1814L. This error code corresponds to ERROR_RESOURCE_NAME_NOT_FOUND.

answered on Stack Overflow Aug 16, 2010 by M. Dudley • edited Mar 6, 2013 by M. Dudley
0

I think it means you don't have adequate permissions. See winerror.h:

#define FRS_ERR_INSUFFICIENT_PRIV        8007L

And this on interpreting HRESULTs.

Edit:

Wrong bits, it's actually:

#define ERROR_RESOURCE_NAME_NOT_FOUND    1814L
answered on Stack Overflow Aug 16, 2010 by bshields • edited Aug 16, 2010 by bshields

User contributions licensed under CC BY-SA 3.0