Right from:
http://www.auslogics.com/en/articles/ssd-tweaks-to-increase-ssd-performance/
Make sure TRIM support is enabled
You probably know that when you delete files, they don’t get deleted immediately. The files stay where they are, but their index is changed so that the space they occupy is marked as free. When you write new files to the disk, the whole block of data gets scrubbed for the new files to be saved. This technology works well for HDDs. But SSDs store and overwrite data in a different way. Therefore, it’s best for the SSD to use TRIM command and scrub deleted files rather than perform an entire block erase when new data is written to the disk. TRIM command allows your operating system to inform your SSD drive which blocks of data are not in use anymore and can be wiped. Basically, TRIM helps to avoid write performance degradation thanks to the way it handles deletes and writes.
Windows 7 supports TRIM out of the box, but it’s still good to make sure TRIM support is enabled. Here is how you can do it:
Launch the elevated command prompt by clicking on Start, typing cmd.exe in the Search box and pressing Ctrl+Shift+Enter
In the command prompt window, type fsutil behavior query disabledeletenotify
DisableDeleteNotify = 0 means that TRIM is enabled and DisableDeleteNotify = 1 means that it’s disabled.