SSD – Check if TRIM is enabled

Check TRIM status

  1. Use the Windows key + X keyboard shortcut to open the Power User menu and select Command Prompt (Admin).
  2. Type the following command and press Enter:

    fsutil behavior query DisableDeleteNotify

    If after executing the fsutil command with the DisableDeleteNotifyyou get a result of zero (0), then it means that TRIM is enabled, and no further action is required. However, if after running the command you see a result of one (1), then it means that TRIM is disabled.

Enable TRIM

fsutil behavior set DisableDeleteNotify 0

Disable TRIM

fsutil behavior set DisableDeleteNotify 1

 

Leave a comment