+ Reply to Thread
Results 1 to 3 of 3

Thread: SSD optimization checklist

  1. #1
    Moderator anon's Avatar
    Join Date
    01.02.08
    Posts
    39,410
    Activity Longevity
    7/20 19/20
    Today Posts
    0/5 ssss39410

    Thumbs up SSD optimization checklist

    • Set a fixed size for the swap file and/or place it on a regular HDD. If you have enough RAM, it will rarely be used anyway.
    • Disable hibernation, it requires a large amount of writes by definition and regular sleep mode is usually good enough.
    • (Windows 7 only) Disable scheduled disk defragmentation because it's not smart enough to know SSDs don't require it.
    • Disable prefetch and SuperFetch, the performance advantages are not worth the extra writes.
      As of Windows 10, both reenable themselves when turned off via the registry, so disabling the SysMain service is the only way. Unfortunately that also kills memory compression and ReadyBoost, so it's a tradeoff. Also note using Enable-MMAgent on PowerShell immediately reenables and starts SysMain.
    • Disable ReadyBoot (not ReadyBoost) for the same reasons.
    • Disable search indexing for the same reasons.
    • (SATA SSDs only) Make sure AHCI mode is enabled.
    • Do overprovisioning, i.e. don't partition the entire drive to leave unused sectors and therefore trade capacity for longer life. Note many drives do this on firmware with a hidden block of spare sectors, so it may not be necessary (but the benefits will stack).
    • Run these commands as administrator.
      Code:
      rem Enable TRIM
      fsutil behavior set disabledeletenotify 0
      rem Disable short filename generation
      fsutil behavior set disable8dot3 1
      rem Disable NTFS encryption (some SSDs compress internally, but encrypted data is highly entropic)
      fsutil behavior set disableencryption 1
      rem Disable paging file encryption
      fsutil behavior set encryptpagingfile 0
      rem Disable NTFS last access timestamp (default as of Vista, but just in case)
      fsutil behavior set disablelastaccess 1
    • Disable all disk-related OS power management settings like spindown timeout, standby timeout, APM/AAM, DIPM/HIPM, etc. Those are either inapplicable to, or have negligible impact on, SSDs.
    • Install the latest firmware and regularly check for upgrades.
    • Install the manufacturer's disk controller (AHCI or NVMe) drivers unless there are specific reasons not to.
    • Install the manufacturer's management software, it's usually fluff but sometimes unlocks vendor-specific features.
    • Use a mechanical HDD or make a RAM disk for transient stuff like browser caches and temporary files.

    Feedback is welcome, especially regarding items specific to non-Windows systems.
    "I just remembered something that happened a long time ago."
    Reply With QuoteReply With Quote
    Thanks

  2. Who Said Thanks:

    cloud99 (14.01.24) , DarkSaibot v.1.3.10 (10.01.24) , Instab (31.03.23) , Lucas Kane (31.03.23) , AxiomaticDirection (30.03.23)

  3. #2
    Moderator anon's Avatar
    Join Date
    01.02.08
    Posts
    39,410
    Activity Longevity
    7/20 19/20
    Today Posts
    0/5 ssss39410
    An extra for VMware users. Add this to your .vmx files to reduce the amount of writes for virtual machines stored in a solid drive. Keep in mind that if any of these values are already defined, you should edit the existing lines instead, otherwise the VM will silently refuse to load.

    Code:
    # Disable vmware.log
    logging = "FALSE"
    # Disable scoreboard files
    vmx.scoreboard.enabled = "FALSE"
    # Disable .vmem files (under Linux, uncomment the second line)
    mainMem.useNamedFile = "FALSE"
    #mainmem.backing = "swap"
    # Don't create partial snapshots
    mainMem.partialLazySave = "FALSE"
    mainMem.partialLazyRestore = "FALSE"
    # Uncomment to change storage directory for (large yet transient) .vmss, .vmsn and .vmem files
    #workingDir = "X:\whatever"
    "I just remembered something that happened a long time ago."
    Reply With QuoteReply With Quote
    Thanks

  4. #3
    Moderator anon's Avatar
    Join Date
    01.02.08
    Posts
    39,410
    Activity Longevity
    7/20 19/20
    Today Posts
    0/5 ssss39410
    A generic way to reduce SSD writes is to once a day, search for all files modified within the last 24 hours, then investigate what they're associated with. This is how I was able to find and stop SleepStudy and various other event traces, WIA logs, unnecessary event providers, StorPort benchmarks and other stuff I'm forgetting.

    Be aware that under Windows this won't find writes to the paging file, event logs and (some) tracing data because their timestamps aren't updated. You'll also need to use RegScanner to know exactly what's changed in the registry.
    "I just remembered something that happened a long time ago."
    Reply With QuoteReply With Quote
    Thanks

+ Reply to Thread

Tags for this Thread

Posting Permissions

  • You may post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts
  •