Descriptions of error codes returned by regsvr32 [closed]

梦想与她 提交于 2019-12-02 03:06:45

问题


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


回答1:


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.




回答2:


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


来源:https://stackoverflow.com/questions/3493761/descriptions-of-error-codes-returned-by-regsvr32

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!