user36440 Asked: 2010-03-05 10:25:55 +0800 CST2010-03-05 10:25:55 +0800 CST 2010-03-05 10:25:55 +0800 CST 如何使用 PowerShell 解析 IIS 日志文件 772 我正在寻找有关如何解析 IIS 日志文件的示例。我才刚刚开始,而不是搜索站点,我想要关于示例站点、示例代码或一本好书的个人建议,以开始这条学习路径。 log-files powershell iis 2 个回答 Voted Best Answer mfinni 2010-03-05T10:36:46+08:002010-03-05T10:36:46+08:00 使用LogParser会更容易吗? Tom Resing 2011-03-05T08:29:44+08:002011-03-05T08:29:44+08:00 当我没有可用的 logparser 时,我很幸运使用 Select-String,就像 http://mohundro.com/blog/2006/11/06/find-in-files-with-powershell/ 中的示例一样-String 默认使用正则表达式,因此非常强大。 Get-ChildItem -Recurse -Include *.* | Select-String "text to search for" 我还使用了Powershell 的 WebAdministration Module 来为站点找到正确的日志目录。
使用LogParser会更容易吗?
当我没有可用的 logparser 时,我很幸运使用 Select-String,就像 http://mohundro.com/blog/2006/11/06/find-in-files-with-powershell/ 中的示例一样-String 默认使用正则表达式,因此非常强大。
我还使用了Powershell 的 WebAdministration Module 来为站点找到正确的日志目录。