16

How to view the user name of the last person that saved a file in the Windows 7 File explorer "Details view"

When you select any file in Windows and view its properties, you can see the 'property' this file was "Last Saved By" = "user_name"

How can I get this property to show up in the Folder's - Details view.

I can get the property "Date Last saved" to show up in the Details view, but I can't find a way to display the username of the "Last Saved by"

It's not available in the choices to pick up, can anyone else please help. Thanks. I originally asked this on stack overflow and was directed to the super user site.

Oliver Salzburg
  • 89,072
  • 65
  • 269
  • 311

6 Answers6

9

You can try the "Owner" field column (not attribute as I originally posted). It's not exactly the same as "Last Saved By" but should do the trick 99% of the time.

In your folder view, right-click on a Column header such as "Name" then click "More...". Alternatively, you can click on View from the menu and "Add columns" then "Choose columns". Scroll down in that list until you see Owner and check that box. This shows me who was the last person to save the file which is what I was looking for when I came across this thread.

Sergio
  • 91
  • 1
  • 3
5
  1. Run Regedit.
  2. HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SystemFileAssociations\.xls (Or whatever file type you want to edit.)
  3. Edit the PreviewDetails string adding whatever you want to show up in the order you want it to show up. To add the last modified by add this to the string: System.Document.LastAuthor;. If not sure what the value should be, open and look at the string in full details to see what it should be. You can not add anything that is not listed in the full details.

  4. Close the explorer window and when you reopen and click on that file type, you should see the value showing in the detail pane at the bottom.

1

As answered by Dylan Nicholson in the link below, the "Owner" property is what you're looking for.

https://answers.microsoft.com/en-us/windows/forum/windows_7-files/still-unanswered-last-saved-by-as-a-column-in-a/f8ced0a1-359a-435b-8204-7a1d40331a91?auth=1

0

In View, Select Details Pane, you can see all those properties which we have for that file Right click-->properties-->Details

0

Windows File System NFTS does store the local Owner. It does not store the user who last modified a file.

Present-day File Systems (NFTS FAT EXT) provide File Attributes to store information about a file. Giving an option for the operating system, Application or User to record information against the file.

Some examples when attributes are maintained:

  • NFTS actively maintains: file name, creation date, Access control including local Owner, size and location.
  • Windows Audit File System, can be configured to log Last Modified User in the Event Log (does not update the file attributes).
  • MS Office Products. Files opened in MS office products will maintain attributes like Last Modified User.
  • File Transfer (eg. HTTP, NFS). Only the content is guaranteed to reach the destination. It is up to the software and user what Attributes are kept (even file name is not guaranteed).
dank8
  • 117
0

You can try the 'lastsavedby' property; but I believe it only applies to files that are considered documents (e.g., Word/.doc*, Excel/.xls*, PowerPoint/.ppt*).

Go to the Windows search box at the top right and enter the following:

lastsavedby:[user]

You will need to replace [user] with the user's first or last name; I don't think it will work with the NT username.

Check out this webpage for more on Advanced Query Syntax: https://msdn.microsoft.com/en-us/library/aa965711.aspx