meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
windows:ntfs [2025/01/08 18:04] – created niziakwindows:ntfs [2025/01/08 18:46] (current) niziak
Line 3: Line 3:
 ===== Trim ===== ===== Trim =====
  
-  * Check if TRIM is enabled: <code sh>fsutil behavior set DisableDeleteNotify 0</code>+  * Check if TRIM is enabled: <code sh>fsutil behavior query DisableDeleteNotify</code>
   * Enable TRIM: <code sh>fsutil behavior set DisableDeleteNotify 0</code>   * Enable TRIM: <code sh>fsutil behavior set DisableDeleteNotify 0</code>
   * Disable TRIM: <code sh>fsutil behavior set DisableDeleteNotify 1</code>   * Disable TRIM: <code sh>fsutil behavior set DisableDeleteNotify 1</code>
  
 +Start trim from GUI:
 +  * ''Optimize and defragment drive'' (PL: ''Optymalizacja i defragmentacja dysków'')
 +  * Select drive and click ''Optimize'' button
 +  * Enable scheduled optmiziation: ''Change settings''
  
 +Trim from shell:
 +  * run PowerShell as Administrator
 +  * run ''Optimize-Volume'' cmdlet: <code sh>Optimize-Volume -DriveLetter c,d,e -ReTrim -Verbose</code>