Windows Server

PowerShell: Show all items modified before a certain date

Replace the date here with the date you’re looking to search for:

Get-ChildItem -Recurse | Where-Object { $_.LastWriteTime -lt “03/04/2008” }