Crucial T705 4TB M.2 NVMe Gen5 with Heatsink NAND SSD - Crucial | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Crucial

Crucial T705 4TB M.2 NVMe Gen5 with Heatsink NAND SSD

SKU: CT4000T705SSD5
R 14 679.00
Only 2 left!
Only 2 left in stock - order soon!

Hold on tight, the Crucial T705 Gen5 NVMe SSD is taking Gen5 performance to the maximum level. With sequential reads and write speeds of up to 14,500MB/s and 12,700MB/s (up to 1,550K/1,800K IOPS random reads/writes), the T705 offers faster gaming, video editing, 3D rendering and heavy workload...

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

Hold on tight, the Crucial T705 Gen5 NVMe SSD is taking Gen5 performance to the maximum level. With sequential reads and write speeds of up to 14,500MB/s and 12,700MB/s (up to 1,550K/1,800K IOPS random reads/writes), the T705 offers faster gaming, video editing, 3D rendering and heavy workload application processing. Built with Micron's 232-layer TLC NAND and featuring a premium aluminium and copper heatsink that dissipates heat without noisy fans or liquid cooling, the Crucial T705 Gen5 SSD is fully optimized for performance, takes full advantage of Microsoft® DirectStorage, and is backwards compatible with Gen3 and Gen4 motherboards. With SSD speeds nearly 2x faster than Gen4, you’ll never look back after using the Crucial T705.

Stay ahead of the competition by loading AAA game titles up to 15% faster than Gen4 SSDs with DirectStorage. Don’t get stuck in the past — unlock the potential for more detailed textures, faster gameplay, and sharper graphics with an SSD that fully supports DirectStorage and GPU decompression. Boasting blazing load times and consistently high performance for heavy workloads, including AI apps, the Crucial T705 Gen5 NVMe SSD is designed for Intel® Core 13-14th Gen & AMD Ryzen™ 7000 series CPUs and is backwards compatible with PCIe 3.0 and 4.0 systems for ultimate flexibility. We engineered our aluminum and copper heatsink to maximize heat dissipation for max performance without noisy fans or liquid cooling and it should be used with adequate system airflow for optimal performance.

FEATURES:

  • Sequential read/write speeds up to 14,100/12,600MB/s
  • Random read/write speeds up to 1.5M/1.8M IOPs
  • PCIe® 5.0 NVMe® SSD
  • Aluminum and copper heatsink for maximum heat dissipation without noisy fans or liquid cooling
  • Load games up to 15% faster
  • Adaptive thermal protection to monitor performance and maintain stability
  • Compatible with Intel® Core™ 13th-14th Gen desktop CPUs & AMD Ryzen™ 7000 series CPUs
  • Up to 4TB of storage for more gaming and UHD/8K+ videos
  • Reduce game texture load times and CPU utilisation with Microsoft® DirectStorage
  • Engineered with cutting-edge Micron® 232-layer TLC NAND
  • Hardware encryption for storage security with TCG Opal 2.01
  • Future proof with backward compatibility in PCIe 3.0 or 4.0 systems
  • Easy to install

SPECIFICATIONS:

  • Interface: PCIe Gen 5.0 x4, NVMe 2.0
  • Capacity: 4TB
  • Raw Capacity: 4096GB
  • Form factor: M.2 (2280)
  • SSD Endurance (TBW): 2400TB
  • Sequential Read: 14,100 MB/s
  • Sequential Write: 12,600 MB/s
  • MTTF: 1.5 million hours
  • 4KB Random Read: 1,500K IOPS
  • 4KB Random Write: 1,800K IOPS
  • Colour: Black
  • Product Dimensions: 8 x 2.3 x 2.1 cm
  • Product Weight: 60g

WHAT'S IN THE BOX:

  • Crucial T705 4TB Gen5 M.2 NVMe SSD with Heatsink x1
Brand Crucial
Colour Black
Form Factor M.2 2280
Interface PCIe NVMe 5.0 x4
Capacity 4TB
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 60 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

Hot
Patriot P400 V4 PCIe Gen4 x4 1TB M.2 2280 NVMe SSD
Patriot

Patriot P400 V4 PCIe Gen4 x4 1TB M.2 2280 NVMe SSD

R 5 479.00

Out of Stock

Hot
Patriot Viper VP4300 Lite 1TB Gen 4 M.2 PCIe NVMe SSD
Patriot

Patriot Viper VP4300 Lite 1TB Gen 4 M.2 PCIe NVMe SSD

R 5 879.00

Only 3 left - order soon!

Crucial P510 2TB M.2 Gen5 NVMe 3D NAND SSD
Crucial

Crucial P510 2TB M.2 Gen5 NVMe 3D NAND SSD

R 5 899.00

Out of Stock

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!