Forked from xnohat/ntfs-file-system-increase-speed-performance.com
Created
February 6, 2025 14:10
-
-
Save timofeika/eaecd14d28a020ae1987099ce8a11d33 to your computer and use it in GitHub Desktop.
π This is a simple utility to increase the NTFS performance by turning off some NTFS features that are not so used by now (or not so important).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rem execute as an Administrator | |
rem based on http://www.windowsdevcenter.com/pub/a/windows/2005/02/08/NTFS_Hacks.html | |
ram based on https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-2000-server/cc938961(v=technet.10) | |
rem http://archive.oreilly.com/cs/user/view/cs_msg/95219 (some installers need 8dot3 filenames) | |
rem disable 8dot3 filenames | |
ram Warning: Some applications such as incremental backup utilities rely on this update information and do not function correctly without it. | |
fsutil behavior set disable8dot3 1 | |
rem increase ntfs mtz size | |
fsutil behavior set mftzone 2 | |
rem disable last access time on all files | |
fsutil behavior set disablelastaccess 1 | |
echo now you can reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment