NT becomes unresponsive during an NTFS disk operation such as a dir.

John Savill

January 8, 2000

1 Min Read
ITPro Today logo

A. When you perform a large NTFS disk operation such as adir/s *.* or a ntbackup :*.* NT can sometimes become unresponsive because NTupdates NTFS files with a last access stamp and if viewing thousands of filesthe NTFS log file can become full and waits to be flushed to the hard disk,this can cause NT to become unresponsive. To stop NTFS updating the last accessstamp perform the following:

  1. Start the registry editor (regedit.exe)

  2. Move to HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlFileSystem

  3. From the Edit menu select New - DWORD value

  4. Enter a name of NtfsDisableLastAccessUpdate and click OK

  5. Double click the new value and set to 1. Click OK

  6. Close the registry editor

  7. Reboot the machine

This should improve the performance of your NTFS partitions.

Below is an example or a .reg file that can be used to automate this:

REGEDIT4
;
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlFileSystem]
"NtfsDisableLastAccessUpdate"=dword:1

About the Author

Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like