我需要帮助解决尝试创建
Windows事件提供程序时无法访问的“提供程序”资源.我使用ManGen实用程序创建我的清单文件,并将我的’.exe’文件命名为我的消息和资源文件,我编译’ .rc’文件与我的exe文件和expected’.res’文件被生成,但是当我运行wevtutil我不断得到’资源不可用’警告.
当您安装清单(例如,wevtutil im manifest.man)时,如果资源不可用,您应该会看到某种警告:
原文链接:https://www.f2er.com/windows/371119.html**** Warning: Publisher EventsProvider resources are not accessible.
要获取一些其他信息,请尝试检索其中一个发布商的信息.例如:
c:\...> wevtutil gp <EventProviderName> Failed to open Metadata for publisher <EventProviderName>. Access denied.
好的,上面提到了一个权限问题,所以让我让路径可以访问,然后再试一次:
c:\...> wevtutil gp <EventProviderName> Failed to open Metadata for publisher <EventProviderName>. The specified resource type cannot be found in the image file.
对于上述,看起来资源没有正确编译.
如果你去File->打开VS并在资源查看器中打开你的exe,你应该可以看到编译的资源.你至少应该有一个“WEVT_TEMPLATE”条目.
要正确编译资源,csc需要传递资源如下:
csc /win32res:<Resource.res>