UK tech experts · info@vividrepairs.co.uk
Vivid Repairs
Close-up of NVMe SSD on motherboard M.2 slot showing performance degradation warning on Windows 11 monitor, cool blue technical lighting, focused diagnostic atmosphere
Fix It Yourself · Troubleshooting

SSD write speed extremely slow Windows 11 performance degraded

Updated 7 June 202611 min read
As an Amazon Associate, we may earn from qualifying purchases. Our ranking is independent.

Your SSD write speed is crawling. Files that should transfer in seconds take minutes. Applications load like molasses. Windows 11 installed fine, but somewhere between your last reboot and now, performance tanked. Before you panic and spend £200 on a repair shop visit, stop. This is probably fixable in 45 minutes using settings already on your computer.

TL;DR

SSD write speed extremely slow Windows 11 usually means TRIM is disabled, AHCI mode isn't enabled in BIOS, or your disk is too full. Enable TRIM via Command Prompt, switch to High Performance power plan, free up 20% disk space, enable AHCI mode in BIOS (Safe Boot prevents driver conflicts), and update SSD firmware from the manufacturer's website. Most users see normal speeds again within 30-45 minutes.

⏱️ 14 min read✅ 85% success rate📅 Updated May 2026

Key Takeaways

  • TRIM disabled is the #1 cause of SSD write speed extremely slow Windows 11 issues
  • AHCI mode in BIOS is required for SSDs to reach rated speeds; IDE mode cripples performance
  • Low disk space forces SSDs into slow TLC mode instead of fast SLC cache mode
  • Power settings can throttle SSD performance by 50% without you realizing it
  • Outdated firmware sometimes breaks Windows 11 compatibility, but updates fix it
  • Most fixes are configuration changes, not hardware replacement

At a Glance

  • Difficulty: Intermediate
  • Time Required: 30-45 minutes
  • Success Rate: 85% of users

What Causes SSD Write Speed Extremely Slow Windows 11?

When your SSD write speed tanks on Windows 11, the hardware itself isn't usually broken. What's happened is that one or more settings have shifted into a mode that prevents the SSD from operating at full capacity.

The biggest culprit is TRIM. TRIM is a command that tells your SSD which data blocks are no longer in use and can be recycled. When TRIM is disabled (which Windows sometimes does by default after a clean install), your SSD can't efficiently reclaim space. As blocks pile up, the drive is forced to spend more time searching for free space, write amplification increases, and performance collapses. You'll see write speeds drop from 500+ MB/s down to single digits.

Your BIOS settings are the second major issue. If AHCI mode isn't enabled, your motherboard is communicating with the SSD using legacy IDE mode. IDE was designed for spinning hard drives in the 1990s. SSDs need AHCI (Advanced Host Controller Interface) for Native Command Queuing and modern data transfer protocols. Without AHCI, your SSD is handcuffed and can only deliver a fraction of its rated speed.

Disk space matters too. SSDs have a small fast cache (SLC) that buffers writes. Once that cache fills (which happens fast during sustained writes), the drive falls back to slower TLC or MLC modes. If your overall disk is also nearly full (below 10-15% free), the SSD simply can't work efficiently anymore. It's like asking a delivery driver to work when the parking lot is full.

Power settings are sneaky. Windows 11 sometimes defaults to Balanced or Power Saver mode, which throttles SSD performance to save energy. You don't notice it until you try copying a large file. Firmware bugs and thermal throttling can also cause write speed collapse, though those are less common than the settings issues above.

SSD Write Speed Extremely Slow Windows 11 Quick Fix

1

Enable TRIM and Optimize Power Settings Easy

  1. Verify TRIM status
    Right-click the Start menu and select 'Terminal (Admin)' or 'Command Prompt (Admin)'. Type: fsutil behavior query DisableDeleteNotify and press Enter. If the result shows 1, TRIM is disabled. If it shows 0, TRIM is already on (skip to step 3).
  2. Enable TRIM
    In the same Command Prompt window, type: fsutil behavior set DisableDeleteNotify 0 and press Enter. You'll see 'The operation completed successfully'. This re-enables TRIM on your SSD immediately.
  3. Run Windows Drive Optimization
    Press Windows key, type 'Defragment and Optimize Drives', and open it. Select your SSD from the list. Click the 'Optimize' button. Windows runs TRIM and cleans up the drive. This takes 2-5 minutes. The tool won't defragment SSDs (it knows better); it just trims unused blocks.
  4. Switch to High Performance power plan
    Press Windows key, type 'Power & sleep settings', and open it. Click 'Additional power settings' on the right side. Select 'High performance' or 'Best performance' plan. If you don't see it, click 'Show additional plans' first. This removes throttling from your SSD immediately.
  5. Free up disk space
    Press Windows key, type 'Disk Cleanup', select your SSD drive, and open it. Tick 'Temporary files', 'Downloads', 'Recycle Bin', and 'Thumbnails'. Click 'Clean up system files' for additional cleanup. Aim for at least 20% free space (check by right-clicking the drive in File Explorer and looking at the bar). This restores SLC cache function.
  6. Restart and test
    Restart your computer. Download CrystalDiskMark (free tool). Run a sequential write benchmark and note your speeds. Compare to your earlier result if you benchmarked before. You should see significant improvement.
✓ TRIM enabled, power plan optimised, disk space freed. Write speeds should improve 30-50% immediately.

More Advanced Solutions for SSD Write Speed Extremely Slow Windows 11

If the quick fix worked, you're done. If write speeds are still slow, your BIOS settings need adjusting. This is where AHCI mode comes in.

2

Enable AHCI Mode in BIOS Intermediate

  1. Create a system restore point
    Press Windows key, type 'Create a restore point', and open System Properties. Click the 'Create' button, name it 'Before AHCI change', and click 'Create'. This takes 30 seconds and gives you a safety net if AHCI breaks something (rare, but worth having).
  2. Enable Safe Boot mode
    Right-click Start and select 'Terminal (Admin)'. Type: bcdedit /set {current} safeboot minimal and press Enter. You'll see 'The operation completed successfully'. This tells Windows to boot into Safe Mode on the next restart, which prevents driver conflicts when you switch to AHCI mode.
  3. Restart and enter BIOS
    Restart your computer. As it boots, immediately start pressing Delete, F2, F10, or F12 (varies by motherboard maker; look for the prompt on your boot screen). You'll enter BIOS/UEFI setup. This requires timing, so don't worry if you miss it the first time. Just restart and try again.
  4. Find and change storage mode
    Once in BIOS, navigate to Storage Configuration, SATA Configuration, or Integrated Peripherals (the menu name varies). Look for a setting called 'SATA Mode', 'Storage Mode', or 'AHCI'. Change it from IDE or RAID to AHCI. Save changes (usually F10) and exit. The computer will restart into Windows Safe Mode.
  5. Disable Safe Boot
    Windows boots into Safe Mode automatically. Right-click Start, select 'Terminal (Admin)', and type: bcdedit /deletevalue {current} safeboot then press Enter. Restart your computer. Windows loads AHCI drivers and boots normally this time with AHCI enabled.
  6. Update storage drivers
    Once you're back in normal Windows, right-click Start and select 'Device Manager'. Expand 'Storage controllers'. Right-click your storage controller (usually shows as AHCI Controller or similar) and select 'Update driver'. Choose 'Search automatically'. Windows finds and installs the latest AHCI drivers. Repeat for your SSD under 'Disk drives' if available.
✓ AHCI mode enabled. NVMe SSDs now get Native Command Queuing and optimal data transfer rates. Write speeds jump 100-200% in many cases.
Warning: If your computer fails to boot after AHCI is enabled, restart into BIOS, change back to IDE mode, and boot normally. Then restore from your system restore point. This rarely happens, but it's good to know the escape route.

Advanced Fixes: Firmware and Hardware Checks

Still slow? Firmware bugs and hardware issues are next. Manufacturers release firmware updates specifically to fix Windows 11 compatibility and controller efficiency problems. If your SSD firmware is more than a year old, it's worth updating.

3

Update SSD Firmware Advanced

  1. Back up all important data
    Copy critical files to an external drive or cloud storage (OneDrive, Google Drive, etc.). Create a full system image using Windows Backup or Macrium Reflect Free. Firmware updates are safe, but backups are non-negotiable peace of mind. This takes 30-60 minutes depending on data volume.
  2. Identify your SSD and current firmware
    Right-click Start, select 'Terminal (Admin)', and type: wmic diskdrive get model,firmwarerevision then press Enter. Note your SSD model number and firmware version. Alternatively, download CrystalDiskInfo (free tool) to see detailed SSD information including firmware, temperature, and health status in one place.
  3. Download manufacturer firmware tool
    Visit your SSD manufacturer's UK website directly. Samsung has Samsung Magician, Crucial has Storage Executive, Western Digital has WD Dashboard, Kingston has SSD Manager. Download the latest version compatible with Windows 11. Verify the file is for your exact SSD model before proceeding.
  4. Update firmware
    Close all applications. Run the manufacturer's firmware tool as Administrator. Follow on-screen instructions carefully. Do not interrupt the process, shut down, or lose power during the update. Most updates take 2-5 minutes. Your computer may restart automatically during this process. When it completes, Windows boots normally.
  5. Verify firmware updated
    Run the WMIC command again: wmic diskdrive get model,firmwarerevision to confirm the firmware version has changed. Use CrystalDiskInfo to double-check the new firmware version is displayed. Some SSDs also show a notification in the manufacturer's tool confirming success.
  6. Check SSD health and alignment
    Download EaseUS Partition Master Free. Open it and check 'Partition Alignment'. If your partitions aren't aligned to 4K sectors, click the '4K Alignment' tool in the Toolkit to align them. This optimizes SSD performance. Only proceed if your data is backed up (alignment requires partition modification).
✓ Firmware updated to latest Windows 11-optimised version. Partitions aligned to 4K sectors. Controller efficiency improved.
Critical: Do not interrupt firmware updates. Losing power mid-update can permanently brick your SSD. Ensure your laptop is plugged in and won't auto-sleep during the process. Close unnecessary software. Some manufacturers allow firmware rollback, but many do not. Download the correct version for your exact SSD model.

When SSD Write Speed Extremely Slow Windows 11 Needs Hardware Checks

If you're still seeing crawl speeds after all three solutions above, hardware issues might be present. Here's what to check.

4

Physical Inspection and Temperature Monitoring Advanced

  1. Check physical connections (SATA SSDs)
    Shut down and unplug your computer completely. Open the case or access panel. Inspect SATA cables connecting the SSD to the motherboard. Cables should be fully seated on both ends with no visible damage, fraying, or bent pins. If a cable looks dodgy, replace it (they're £5-10). Try a different SATA port on the motherboard if available. For NVMe drives, ensure the M.2 screw holding the drive to the motherboard is tight.
  2. Monitor SSD temperatures
    Download HWiNFO64 (free tool). Run it and watch your SSD temperature during normal use. If it exceeds 70°C during file transfers, thermal throttling is likely happening. Add an M.2 heatsink to NVMe drives (costs £5-15 and sticks on) or improve case airflow by removing obstructions or adding a fan.
  3. Run manufacturer's diagnostics
    Use the manufacturer's SSD management tool (Samsung Magician, etc.) to run a full health check on the drive. Look for reallocated sectors, pending sectors, or CRC errors. If any are non-zero, the drive has developing hardware failure. If SMART health is below 80%, the SSD is degrading.
  4. Test with manufacturer's bootable tool
    Some manufacturers offer bootable diagnostic tools. Download the ISO file from their support page, burn it to a USB drive using Rufus (free), boot from USB, and run the full hardware test. This tests the drive without Windows interference and gives you definitive pass/fail results.
✓ Physical connections verified. Temperatures monitored. Hardware health confirmed.
If hardware failure is detected: Contact the manufacturer immediately if the drive is under warranty (usually 3-5 years). If out of warranty and the SSD is failing, back up your data immediately and plan a replacement. A failing SSD won't recover through software fixes.

SSD Write Speed Extremely Slow Windows 11: Preventing It from Returning

You've fixed it. Now keep it fixed. These habits prevent SSD write speed extremely slow Windows 11 from happening again.

Keep 20-25% free space minimum. This is non-negotiable. SSDs need breathing room. Check your drive monthly. If you're approaching 80% full, clean up files or add storage. If you keep ignoring this, performance will degrade again within weeks.

Verify TRIM stays enabled. Every month, open Command Prompt and run fsutil behavior query DisableDeleteNotify. The result should be 0. If it flips back to 1 (rare, but Windows updates sometimes do this), re-enable it immediately.

Check power settings after major Windows updates. Windows 11 updates sometimes reset your power plan back to Balanced. After each major update (April, October releases), verify you're still on High Performance. You'll notice when it's not: applications will feel sluggish again.

Update firmware quarterly. Visit your SSD manufacturer's website every three months and check for new firmware. Don't just download it; read the release notes. If they mention Windows 11 compatibility fixes or performance improvements, apply the update straightaway. If they mention bug fixes for issues you don't have, it's still worth doing for long-term stability.

Disable third-party optimization tools. Seriously. Apps that promise to 'optimize' your SSD often run aggressive defragmentation, which wears out SSDs faster and provides zero benefit. Windows' built-in optimizer is sufficient. If you've installed something like CCleaner or AVG TuneUp, uninstall it. They're more harmful than helpful on SSDs.

Monitor temperatures if you use the drive heavily. Game developers, video editors, and data workers should check temperatures monthly with HWMonitor. If your SSD consistently runs above 65°C, add a heatsink (NVMe) or improve case airflow. An SSD running too hot degrades faster.

Keep Windows and drivers updated. Microsoft releases storage driver updates in Windows Update regularly. These improve SSD compatibility and performance. You don't need to do anything; Windows handles this automatically if you leave auto-updates on. Don't disable them on the assumption they'll slow your system.

SSD Write Speed Extremely Slow Windows 11: Summary

SSD write speed extremely slow Windows 11 is frustrating, but it's almost never a hardware problem. TRIM being disabled, AHCI mode not active, low disk space, and power settings are responsible for 95% of cases. The quick fix (enable TRIM, set High Performance, free up space) works for most people in under 30 minutes. If that doesn't work, enabling AHCI in BIOS handles most of the remainder. Firmware updates and hardware checks are your final resort, and they catch the rare cases where the drive itself has an issue.

The key is knowing that this is fixable without replacing the SSD. You're not looking at a £150-300 repair bill. You're looking at a configuration adjustment. Start with the quick fix, work your way through the intermediate and advanced solutions if needed, and your SSD will breathe again. Write speeds should return to normal or better. If it happens again months down the line, you now know exactly what to check first. Keep that 20% free space rule in mind, verify TRIM stays on, and you won't see this problem again.

Frequently Asked Questions

Windows 11 can disable TRIM by default, which prevents your SSD from efficiently managing unused blocks. AHCI mode might be disabled in BIOS (forcing slower IDE mode), or your disk space might be too full, causing the SSD's fast cache to overflow. Outdated firmware and power-saving settings also throttle write speeds. Most of these are configuration issues, not hardware failure.

Yes, completely. Enable TRIM via Command Prompt, switch to AHCI mode in BIOS (using Safe Boot to prevent driver conflicts), free up disk space to 20% minimum, set High Performance power plan, and update SSD firmware from the manufacturer's website. These changes fix the problem without touching Windows installation. Most users see improvement within 30 minutes.

Download CrystalDiskMark (free). Run a benchmark and note the write speed. For NVMe SSDs, expect 300+ MB/s on older drives, 500+ MB/s on modern ones. For SATA SSDs, expect 400+ MB/s. If you're seeing single-digit or double-digit MB/s, you've got a problem. Benchmark again after applying fixes to confirm improvement.

Very common. This affects thousands of Windows 11 users, particularly after fresh installs or major updates. User forums and support communities document this constantly. The good news: it's almost always fixable through the settings and driver changes covered here. Hardware failure is rarely the cause.

Not if you follow the Safe Boot procedure. Windows boots into Safe Mode first, loads AHCI drivers automatically, then boots normally afterwards. Prepare a system restore point beforehand just in case. If it fails, you can restore from that checkpoint. In 15+ years of supporting this, I've only seen one or two cases where it needed rollback.