如何使用命令提示符在事件查看器中创建新日志? (Windows 服务器 2008)
我正在寻找一种在 Windows 事件查看器中创建新日志的方法。使用 eventcreate,我可以为特定日志和源创建事件,但如果我提供不存在的日志名称,则会收到一条错误消息,指出“...”日志不存在。
如果我使用 C# EventLog.CreateEventSource,则会自动创建日志。
那么,如何在事件查看器的应用程序和服务日志下创建这样的日志?
而且,如果无法使用命令提示符,是否可以在事件查看器本身中创建额外的日志? (我不想去弄乱注册表,因为这样你也可以创建日志)。
I'm looking for a way to create a new log in the Windows Event Viewer. With eventcreate, I can create an event for a certain log and source, but if I give a non existing log name, I get an error saying the '....' log does not exist.
If I use the C# EventLog.CreateEventSource, the Log is automatically created.
So, how do I create such a log under Applications and Services Logs in Event Viewer?
And, if not possible with Command Prompt, is it possible in the Event Viewer itself to create an extra log? (I do not want to go and mess in the registry, because like that you can also create a log).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己编写了一个小命令行实用程序。
I resorted to writing a little command line utility myself.