PowerShell查询近期创建的文件

Get-ChildItem -Path c:\ -Recurse -ErrorAction:SilentlyContinue | `
Where-Object -FilterScript {(((get-date) - ($_.CreationTime)).days -lt 7-and ($_.length) -gt 1024*1024*10)} ` 
| select-object fullname

你可能感兴趣的:(powershell)