千家信息网

powershell脚本定期删除windows日志

发表于:2024-11-18 作者:千家信息网编辑
千家信息网最后更新 2024年11月18日,例: 定期删除3天前的日志$FilePath = "C:\Windows\System32\LogFiles"$DaysAgo=3$Today=Get-Date Get-ChildItem -Pat
千家信息网最后更新 2024年11月18日powershell脚本定期删除windows日志

例: 定期删除3天前的日志

$FilePath = "C:\Windows\System32\LogFiles"$DaysAgo=3$Today=Get-Date  Get-ChildItem -Path  $FilePath "*.log" | Where-Object {$_.LastWriteTime -lt $Today.AddDays(-$DaysAgo)} |Remove-Item
0