OWC Aura Pro NT 960GB PCIe NVMe SSD for 2016-2017 TB3 non-Touchbar Macbook Pro - OWC | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
OWC

OWC Aura Pro NT 960GB PCIe NVMe SSD for 2016-2017 TB3 non-Touchbar Macbook Pro

SKU: OWCS3DAP4NT10K
R 3 989.00 R 4 199.00
You save R 210.00 (5%)
Only 1 left!
Only 1 left in stock - order soon!
You save R 210.00 (5% off)

Today’s apps and OS updates require more space to install. Video and photo resolutions are also increasing in size, which in turn makes file sizes bigger. The OWC Aura Pro NT 1TB PCIe NVMe SSD is the best choice you can make to give your MacBook Pro the capacity to do more. With enough space to...

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

Frequently Bought Together

Today’s apps and OS updates require more space to install. Video and photo resolutions are also increasing in size, which in turn makes file sizes bigger. The OWC Aura Pro NT 1TB PCIe NVMe SSD is the best choice you can make to give your MacBook Pro the capacity to do more. With enough space to store all your data and pro-level performance, the Aura Pro NT is an ideal option for a MacBook Pro upgrade. This high-performance SSD will keep your Mac running optimally for years, at a fraction of the cost of buying a new model MacBook.

The Aura Pro NT’s advanced flash management and SLC caching technologies enable you to rip through production-level audio, design, and photography workflows. Easily get through everyday file transfers and backups at speeds of up to 2720MB/s. The OWC Aura Pro NT 1TB PCIe NVMe SSD is specifically designed to work with the late-2016 and mid-2017 versions of the MacBook Pro 13″ with Retina displays.

FEATURES:

  • Store and access all your data
  • Pro Level Performance
  • Up to 2720MB/s
  • Advanced Technology
  • Designed for MacBook Pro 13" Retina (late-2016 and mid-2017)

SPECIFICATIONS:

  • Capacity: 960GB
  • Formatted Capacity: 894GiB
  • Form Factor: Custom Blade
  • Storage Interface: PCIe 3.1 x4, NVMe 1.3
  • Controller: Phison E13T with 7% over-provisioning
  • NAND Flash Components: Synchronous Triple-Level Cell (TLC) 3D NAND Flash
  • S.M.A.R.T. Attributes: Standard attributes supported
  • Nonrecoverable Read Errors: 1 per 1016 bits read
  • MTBF (Mean Time Between Failures): 1,500,000 hours
  • Wear Leveling: Supported
  • TRIM Support: OS Dependent
  • Security:
    • TCG Pyrite
    • TCG Opal
  • Mac OS Compatibility:
    • macOS 10.14 Mojave
    • macOS 10.15 Catalina
    • macOS 11.x Big Sur
    • macOS 12.x Monterey
  • Ambient Temperature:
    • Operating: 32°F to 158°F (0°C to 70°C)
    • Non-Operating: -40°F to 185°F (-40°C to 85°C)
  • Shock: Non-Operating: 1500 G max
  • RoHS Compliant: Yes

WHAT’S IN THE BOX:

  • OWC Aura Pro NT 1TB PCIe NVMe SSD – White x1
  • OWC Pentalobe P5 Screwdriver x1
  • OWC Torx T5 Screwdriver x1
  • OWC Guitar Pick Tool x1
  • Newertech Nylon Probe(Spudger Tool) x1
  • OWC 40mm Suction Cup x1
  • Quick Start Guide x1
Brand OWC
Colour White
Form Factor Custom Blade
Interface PCIe NVMe 3.1x4
Capacity 960GB
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

-14%
OWC Aura Pro 6G 500GB mSATA SSD for Macbook Air 2010-2011
OWC

OWC Aura Pro 6G 500GB mSATA SSD for Macbook Air 2010-2011

R 2 149.00 R 2 499.00

Save R 350.00

Only 1 left - order soon!

-15%
OWC Aura Pro 6G 250GB mSATA SSD for Macbook Air 2012
OWC

OWC Aura Pro 6G 250GB mSATA SSD for Macbook Air 2012

R 1 109.00 R 1 299.00

Save R 190.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!