Inspired by this answer, I realize I have no idea how to disable the last accessed attribute in Windows to increase performance. If you can, how?
I know in Linux you can mount the partition with the 'noatime' option, but is there a similar feature in Windows for NTFS?
But be careful, some program (especially backup programs) might need this.
The
HKLM\SYSTEM\CurrentControlSet\Control\FileSystem\NtfsDisableLastAccessUpdate
(docs) registry entry is aREG_DWORD
that can be:0
: update the last-access timestamp, and record each change in the NTFS log (default)1
: don't update the last-access timestamp, and don't record time stamp updates in the NTFS logWhether it makes much difference is debatable.
JR