by Yahwho | May 12, 2026 | Powershell
robocopy D:\Source\FolderĀ C:\Temp\DummyAudit /L /E /B /XJ /R:0 /W:0 /TS /FP /NP /LOG:C:\Temp\recent_files.txt /MAXAGE:20260503 Short description This robocopy command performs a dry-run audit of files under D:\Data\Users, listing files that would be copied without...
by Yahwho | May 12, 2026 | Powershell
gci D:\ -r -file -ea 0 | sort LastWriteTime -desc | select -f 50 LastWriteTime,FullName This command recursively searches the D:\ drive for files, suppresses access errors, sorts the results by last modified date, and displays the 50 most recently modified files....