码迷,mamicode.com
首页 > 系统相关 > 详细

powershell 检索日志信息

时间:2015-05-07 12:44:57      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:following   信息   errors   file   

$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

powershell 检索日志信息

标签:following   信息   errors   file   

原文地址:http://3544640.blog.51cto.com/3534640/1643686

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!