EvtOpenChannelEnum 访问被拒绝
在使用 EvtOpenSession
获取有效会话句柄后,我正在调用 EvtOpenChannelEnum
。 EvtOpenSession
有效,但 EvtOpenChannelEnum
返回访问被拒绝 (GetLastError = 5
)。
为什么会这样呢?如果存在访问问题,我希望通过 EvtOpenSession
调用来解决它。更令人困惑的是,用户可以使用我的程序在同一台计算机上,以同一用户身份登录,并使用 Windows 事件日志查看器(2008 年,因此假设它使用相同的 API)并且它工作正常。
难住了...
I'm calling EvtOpenChannelEnum
after having gotten a valid session handle with EvtOpenSession
. EvtOpenSession
worked, but EvtOpenChannelEnum
is returning access denied (GetLastError = 5
).
Why would this be? If there was an access problem, I'd expect to hit it with the EvtOpenSession
call. What's more perplexing, the user can get on the same computer with my program, logged in as the same user, and use the Windows Event Log Viewer (2008, so assuming it's using the same API) and it works fine.
Stumped...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有远程服务器所需的权限。这不会立即检查,而是在您第一次使用手柄时检查。
来自 EvtOpenSession 的文档:
You do not have the required permission on the remote server. This is not checked immediately, but when you use the handle for the first time.
From the docs for EvtOpenSession: