1

我正在使用一个 powershell 脚本,该脚本将扫描某个目录中的大量日志文件,然后将所有有错误的行输出到单独的文本文件甚至更好的 html 文件中。有什么想法我能做到这一点吗?

提前致谢!

干杯

尼尔

4

2 回答 2

1
$files = Get-ChildItem "D:\TEMP\*.log"
foreach ($file in $files) 
{
    $count=Get-Content $file.fullName | Select-String "Fail|error|warning" 
    if(@($count).count -gt 0) 
    {
        $msg = new-object Net.Mail.MailMessage
        $msg.From = "ZZZ@YYY.com"
        $msg.To.Add("ME@YYY.com,YOU@YYY.com")
        $msg.Subject = "ERROR: FTP"
        $msg.Body = "The attached SFTP Log has errors. Please look ASAP and Fix."
        $smtpServer = "smtp.office365.com" 
        $smtp = New-Object Net.Mail.SmtpClient($SmtpServer, 587) 
        $smtp.EnableSsl = $true 
        $smtp.Credentials = New-Object System.Net.NetworkCredential("ADMIN@YYY.com", "XXXXXXXXX"); 
        $att = new-object Net.Mail.Attachment($file.fullName)
        $msg.Attachments.Add($att)
        $smtp.Send($msg)
        $att.Dispose()
        write-host $file.fullName
    }
}
于 2019-04-18T22:14:47.127 回答
0

这将获取所有包含“错误”一词的行并将这些行导出到文本文件:

Get-ChildItem <path> -Filter *.log | 
Select-String -Pattern error -AllMatches -SimpleMatch | 
Foreach-Object {$_.Line} | 
Out-File .\errors.log
于 2012-08-02T11:21:27.060 回答