Putting this here so I don’t have to look it up again.
Gci of a folder and list objects older than the date specified.
Get-ChildItem e:\data\ -recurse | Where-Object { $_.CreationTime -le "01/31/2012" }
Putting this here so I don’t have to look it up again.
Gci of a folder and list objects older than the date specified.
Get-ChildItem e:\data\ -recurse | Where-Object { $_.CreationTime -le "01/31/2012" }