从某个节点打开事件查看器
打开显示特定节点详细信息的 Windows 事件查看器的命令是什么?
例如,如果我只是使用 eventvwr
命令;它会打开选择根节点的 UI。我希望在打开时选择 Application
节点或任何其他节点。
可以通过编程方式配置吗?
谢谢。
What is the command to open windows event viewer displaying a particular node details?
For example if I simply use eventvwr
command; it opens the UI with Root Node selected. I want Application
node selected when it is opened OR any other node.
Can it be configured programatically?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要查看 eventvwr.exe 参数,只需键入:
要专门打开应用程序日志,请使用以下命令:
To view the eventvwr.exe arguments simply type:
To specifically open the Application log use the command below:
对于应用程序节点,您可以这样称呼它:
For an Application node you'd call it as such:
我认为你不能。您最好的选择是创建自定义视图 - 如果您想要的话,可以过滤来自某些特定应用程序的事件。对于命令行,“eventvwr /f”可用于指定过滤器。
I don't think you can. Your best option is to create a custom view - to filter the events from some specific apps if thats what you want. For command line, 'eventvwr /f' can be used to specify filter.