I run this code:
Get-ChildItem 'C:\Test Folder' | Where {$_.LastWriteTime} | select -last 1
And I get back Mode, LastWriteTime, Length, and Name of the last modified file - great!
I'm trying to get the username of the file's owner as well.
I've added this code:
| ForEach-Object {Get-Acl $_.FullName}
Which returns Path, Owner, Access for the file.
How can I display LastWriteTime, and Owner to be the only objects shown in the output?