开发者

Descriptions of error codes returned by regsvr32 [closed]

开发者 https://www.devze.com 2023-01-11 14:02 出处:网络
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
开发者_Python百科

We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.

Closed 5 years ago.

Improve this question

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


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.


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
0

精彩评论

暂无评论...
验证码 换一张
取 消