To find all files modified after may 1st, 2014 :
Get-ChildItem .\ -recurse | Where-Object { ($_.PsIsContainer -eq $false) -and ($_.LastWriteTime -gt (get-date '2014-05-01')) } | select fullname,lastwritetime,length | Out-GridView
To find all files modified after may 1st, 2014 :
Get-ChildItem .\ -recurse | Where-Object { ($_.PsIsContainer -eq $false) -and ($_.LastWriteTime -gt (get-date '2014-05-01')) } | select fullname,lastwritetime,length | Out-GridView
Frenquently asked questions about everyday real problems in PowerShell
No comments:
Post a Comment