是否可以自动将事件查看器错误保存为文本文件?
目前,我花费了大量时间将事件查看器日志复制并粘贴到文本文件中,然后将它们复制到另一台计算机上的存储库。
是否可以自动将指定日期/时间之间的这些事件查看器日志保存到计算机(以便可以将它们复制到存储库)。
理想情况下,如果可能的话,必须通过 C# .NET 代码来实现。
这样做的目的是为了在 Windows Server 2003/2008 计算机上运行的自动化测试。
谢谢
I currently spend a considerable amount of time copying and pasting event viewer logs into text files and then copying them to a repository on another computer.
Is it possible to automate the saving these event viewer logs between a specified date/time to the computer (so that they can then be copied to the repository).
Ideally, if it's possible, it has to be achieved by C# .NET code.
The purpose of this is for automated tests, which run on Windows Server 2003/2008 machines.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
EventLog.GetEventLogs
将为您提供日志,然后您可以循环遍历它们并写入文本文件。 此处的示例将帮助您入门。EventLog.GetEventLogs
will get you the logs, you can then loop throught them and write to a text file. The example here will get you started.