Files
System-Scripts/PowerShell/List Documents sorted by LastWriteTime.ps1

4 lines
111 B
PowerShell
Raw Normal View History

2020-06-09 10:33:32 +02:00
# List Documents sorted by LastWriteTime
Get-ChildItem *.docx -recurse | sort -property LastWriteTime