svanur08 skrifaði:Það er windows 7 á tölvunni.
Það skiftir engu máli, svona grunnskipanir í stýrikerfi breytast ekki frá einni útgáfu til annarar, svona til fróðleiks eru nöfn á skipunum úr DOS 3 í mörgum tilfellum þær sömu í Win 10 ;-)
How to Check if TRIM Is Enabled
You’ll need to check this from an Administrator Command Prompt window. To open an Administrator Command Prompt window on Windows 10 or 8.1, right-click the Start button and select “Command Prompt (Admin).”
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
Windows should automatically enable TRIM if you have a modern version of Windows with a modern solid-state drive. If TRIM is disabled, it’s possible that Windows knows something you don’t, and TRIM shouldn’t be enabled for a drive. Perhaps it’s a a very old solid-state drive. However, it’s also possible that TRIM really should be enabled but something messed up in the automatic detection process.
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 .)
https://www.howtogeek.com/257196/how-to ... f-it-isnt/