How to Check if TRIM Is Enabled for Your SSD (and Enable It if It Isn’t)
Windows 7 and above are set to automatically enable TRIM on solid-state drives. You shouldn’t need to worry about enabling TRIM yourself. But, if you want to double-check that Windows has enabled TRIM, you can.
When TRIM is enabled, Windows will send an instruction to your solid-state drive every time you delete a file. The solid-state drive can then automatically erase that file’s contents. This is important for maintaining speedy solid-state drive performance.
How to Check if TRIM Is Enabled
On Windows 7, open the Start menu, search for “Command Prompt”, right-click the “Command Prompt” shortcut, and select “Run as Administrator.”
Run the following command in the Command Prompt window:
fsutil behavior query DisableDeleteNotify
You’ll see one of two results. If you see DisableDeleteNotify = 0 , TRIM is enabled. Everything is good and you don’t need to worry about it.
If you see DisableDeleteNotify = 1 , TRIM is disabled. This is a problem if you have an SSD.
How to Enable TRIM
If TRIM isn’t enabled and you’d like to enable it, you can forcibly do so by running the following command in an Administrator Command Prompt window:
fsutil behavior set DisableDeleteNotify 0
(If you’d like to disable TRIM afterwards for some reason, run the above command with a 1 in place of the 0 .)
How to Check if Windows Is Running Retrim on a Schedule
On Windows 8 and 10, Windows automatically optimizes solid-state drives on a schedule by running the “retrim” operation. This is necessary because, if many TRIM requests are sent to a drive at once, the requests may build up in a queue and then be discarded. Windows regularly performs “retrim” optimizations that ensure all the TRIM requests sent to a drive are in fact processed. You can read more about this on Microsoft employee Scott Hanselman’s blog.
The “retrim” feature is only included in Windows 8 and 10, so Windows 7 users don’t need to worry about this.
To check that Windows is performing retrim optimizations on a schedule, open the Optimize Drives application. Open the Start menu, search for “Optimize Drives”, and click the “Defragment and Optimize Drives” shortcut.
Click the “Change Settings” button and ensure “Run on a Schedule (Recommended)” is enabled. By default, Windows will run the retrim optimization on a weekly schedule.
Again, this isn’t something you should need to worry about. If your computer has an SSD, Windows should automatically enable TRIM and enable optimizing the drive with retrim on a schedule. These options should just be enabled by default. But it’s worth giving a quick look to make sure everything’s running properly.
By How to Geek
No comments:
Post a Comment