Last active
August 2, 2024 02:21
-
-
Save p3x-robot/185e5c1b699d726bcce1bb51d5ca82d8 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 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