rem  using the C:\Windows\System32\fsutil.exe utility

rem shrink MFT to minimum 1/8 of the disk (still ridiculously huge)
fsutil behavior set mftzone 1

rem Query last-access maintenance.  If 0 it is on, allowing sort by last-access date
rem Flags are backwards from the usual enable flags.
rem Note American spelling of behaviour.
fsutil behavior query disablelastaccess

rem turn on last-access maintenance
fsutil behavior set disablelastaccess 0

rem disable 8.3 filenames
fsutil behavior set disable8dot3 1

rem REBOOT to make changes take effect.