UGREEN CM400-10902 Type-C to M.2 M-KEY PCIe NVMe SSD Enclosure - Ugreen | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Ugreen

UGREEN CM400-10902 Type-C to M.2 M-KEY PCIe NVMe SSD Enclosure

SKU: CM400-10902
R 309.00 R 399.00
You save R 90.00 (23%)
In Stock
You save R 90.00 (23% off)

The UGREEN CM400-10902 Type-C to M.2 M-KEY PCIe NVMe SSD Enclosure is designed to provide smooth high-speed data transfers, making it an ideal solution for professionals, content creators, and tech enthusiasts who require fast external storage. Supporting NVMe PCIe M.2 SSDs, this enclosure delivers...

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

Frequently Bought Together

The UGREEN CM400-10902 Type-C to M.2 M-KEY PCIe NVMe SSD Enclosure is designed to provide smooth high-speed data transfers, making it an ideal solution for professionals, content creators, and tech enthusiasts who require fast external storage. Supporting NVMe PCIe M.2 SSDs, this enclosure delivers up to 10Gbps transfer speeds via Type-C 3.1 Gen 2, significantly enhancing workflow efficiency for large file transfers, backups, and system cloning.

Equipped with the advanced RTL9210B chipset, this enclosure ensures stability and safety, offering protection against short circuits, over-current, and overheating. It is fully plug-and-play, requiring no additional drivers or software, making it perfect for Windows and macOS users.

The tool-free installation mechanism allows users to effortlessly mount their SSDs within seconds. It supports four different M.2 SSD sizes (2230/2242/2260/2280). Its durable aluminium housing enhances heat dissipation, ensuring optimal performance even under heavy workloads.

Whether you need a portable high-speed external drive, an upgrade for your old SSD, or a quick and reliable backup solution, the UGREEN CM400-10902 enclosure is a must-have accessory for those who demand speed, stability, and convenience.

FEATURES:

  • Aluminium housing
  • Blazing Fast 10Gbps Speeds
  • Hassle-free and screwless setup
  • Supports four SSD sizes
  • Advanced RTL910B chip
  • Expandable storage capacity
  • Designed for NVMe PCIe M.2 SSD
  • Support UASP, S.M.A.R.T and TRIM

SPECIFICATIONS:

  • Material: Aluminum Alloy + ABS
  • Input Interface: Type-C (USB3.1 Gen2 Female)
  • Output Interface: M.2 M-KEY (NVME; PCIe 3.0)
  • Transmission Rate: Up to 10Gbps
  • Installation: Tool-free
  • Support Capacity: ±2TB
  • Supported SSD sizes: 2230/2242/2260/2280
  • Supported System: Windows, Mac OS, Linux, Android
  • Data Cable: Type-C/Male to Type-A/Male + Type-C/Male(2 in 1), 0.3m
  • LED indicator: monitor the state of the SSD
  • Supported Drive Protocols: PCIe NVME
  • Supported Drive Types:  M.2 M-Key SSD
  • Compatibility: PC, laptop, Smart TV and other devices
  • Protection Features: Built-in ESD protection circuit, resistant to 4KV static
  • Colour: Silver
  • Weight: 139g
  • Dimensions: 124 x 40.89 x 13.97mm

WHAT'S IN THE BOX:

  • UGREEN CM400-10902 Type-C to M.2 M-KEY PCIe NVMe SSD Enclosure - Silver x1
  • Type-C cable x1
  • User Manual
Brand Ugreen
Colour Silver
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 24 Months
0.0
0 reviews
Login to Review

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

Related Products

-18%
UGREEN USB 3.0 to 2.5” SATA Hard Drive Enclosure (Non-Detachable Cable)
Ugreen

UGREEN USB 3.0 to 2.5” SATA Hard Drive Enclosure (Non-Detachable Cable)

R 179.00 R 219.00

Save R 40.00

In Stock

-21%
UGREEN CM400-90264 M.2 NVME/SATA SSD Enclosure (10Gbps) - Silver
Ugreen

UGREEN CM400-90264 M.2 NVME/SATA SSD Enclosure (10Gbps) - Silver

R 449.00 R 569.00

Save R 120.00

In Stock

-10%
OWC 8 Bay Thunderbolt3 RAID5 0TB
OWC

OWC 8 Bay Thunderbolt3 RAID5 0TB

R 20 829.00 R 23 199.00

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