powershell 检索日志信息
$strlog="c:\log\applog.txt";$e=$i=$w=0
$tpath=Test-Path $strlog
if(!$tpath)
{
New-Item -Path "c:\log" -ItemType dir
New-Item -Path $strlog -ItemType file
}
Get-EventLog -LogName Application | Out-File $strlog
switch -Wildcard -File $strlog {
"*error*" {$e++}
"*info*"{$i++}
"*warn*"{$w++}
}
Write-Output "
$strlog contains the following:
errors $e
informations $i
warnings $w
"
本文出自 “加速器” 博客,请务必保留此出处http://3544640.blog.51cto.com/3534640/1643686
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。