Disable NTFS Last Access Timestamp via Regedit
Disabling the NTFS last access timestamp update prevents Windows from
writing metadata to the drive every time a file or folder is read,
reducing unnecessary drive writes and improving overall disk I/O
performance. This guide provides a direct, step-by-step walkthrough on
how to use the Windows Registry Editor (regedit) to disable
this feature across your NTFS drives.
Step 1: Open the Registry Editor
- Press
Windows Key + Rto open the Run dialog box. - Type
regeditand pressEnteror click OK. - If prompted by User Account Control (UAC), click Yes to grant administrative privileges.
Step 2: Navigate to the FileSystem Key
In the Registry Editor address bar at the top, paste the following
path and press Enter:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem
Alternatively, navigate through the left sidebar folder tree: -
Expand HKEY_LOCAL_MACHINE - Expand SYSTEM -
Expand CurrentControlSet - Expand Control -
Select FileSystem
Step 3: Modify NtfsDisableLastAccessUpdate
- In the right pane of the
FileSystemfolder, locate the DWORD (32-bit) Value namedNtfsDisableLastAccessUpdate. (Note: If this value does not exist, right-click an empty space in the right pane, select New > DWORD (32-bit) Value, and name itNtfsDisableLastAccessUpdate.) - Double-click on
NtfsDisableLastAccessUpdateto open its edit prompt. - Set the Base to Hexadecimal.
- In the Value data field, enter
1(User-managed, disabled) or80000001(System-managed, disabled). Setting the value to1completely disables last access updates. - Click OK to save the changes.
Step 4: Restart Your Computer
Close the Registry Editor and restart your system. The changes will take effect immediately upon reboot, eliminating the read-induced write overhead on all connected NTFS file systems.