I am stuck!
Have you looked at your logs yet?
Here's an example of what you might see. I have had to revise my PowerShell script to try to take account of users' unsortable timestamp formats.
<quote>
cd \
$This_Hour = Get-Date -Hour ((Get-Date).Hour -1) -Format "yyyy-MM-dd HH:MM:ss"
LS -Re -Fi * -Fo -EA:SilentlyContinue | where LastWriteTime -GE ($This_Hour) | sort LastWriteTime | ft LastWriteTime, Length, FullName -AutoSize -Wrap
That does speed up the output phase but it is still slow because it has to list every file on the drive and then compare the timestamp in the filter.
</quote>