I'm trying to read the folder info of shared location. I was unable to get the last modified by info.
Please help me, Is it possible to get the modified by/editor info of folders? if yes, please let me know how to write the powershell script?
below is the current script for folder and owner info and few other attributes:
Get-ChildItem $dir -Directory |
Select-Object Name ,CreationTime, LastAccessTime,IsReadOnly,@{Name="Owner";Expression={(Get-ACL $.Fullname).Owner}},@{Name="Size IN MB";Expression={$.Length / 1MB}}