码迷,mamicode.com
首页 > 其他好文 > 详细

删除一年之前的日志文件

时间:2015-05-11 10:35:05      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

cd C:\Eventlog
$gap = (Get-Date) - (New-TimeSpan -Days 365)
$unusedfiles = Get-ChildItem | where -FilterScript {$_.lastwritetime -lt $gap -and $_.name -ne "eventsave.exe"} | select -ExpandProperty Name
ForEach ($unusedfile in $unusedfiles) {
Remove-Item $unusedfile
}

 

删除一年之前的日志文件

标签:

原文地址:http://www.cnblogs.com/IvanChen/p/4493770.html

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