UGREEN CM302 M.2 M/B-Key to PCI-E 3.0 Expansion Card - Ugreen | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Ugreen

UGREEN CM302 M.2 M/B-Key to PCI-E 3.0 Expansion Card

SKU: CM302-70504
R 269.00
In Stock

Upgrade your system’s storage capabilities with the UGREEN CM302 M.2 M/B-Key to PCI-E 3.0 Expansion Card. This high-performance adapter enables seamless integration of both NVMe and SATA M.2 SSDs, offering a flexible solution for maximising storage speeds and efficiency. Designed for PCIe 3.0 x4...

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

Frequently Bought Together

Upgrade your system’s storage capabilities with the UGREEN CM302 M.2 M/B-Key to PCI-E 3.0 Expansion Card. This high-performance adapter enables seamless integration of both NVMe and SATA M.2 SSDs, offering a flexible solution for maximising storage speeds and efficiency. Designed for PCIe 3.0 x4 connectivity, it delivers ultra-fast data transfer speeds of up to 32Gbps for NVMe SSDs and 6Gbps for SATA SSDs, ensuring rapid system boot times and improved application performance.

Supporting M.2 SSD form factors 2230, 2242, 2260, and 2280, this expansion card accommodates a wide range of storage drives, making it an ideal solution for PC enthusiasts, gamers, and professionals looking to enhance system responsiveness. The dual-interface design (M-Key for NVMe and B-Key for SATA) ensures maximum compatibility, allowing users to install either NVMe or SATA SSDs based on their needs.

Built with high-quality PCB materials, the UGREEN CM302 M.2 M/B-Key to PCI-E 3.0 Expansion Card ensures stable performance and efficient heat dissipation. It is compatible with Windows and Linux operating systems, making it a versatile choice for desktop upgrades. Additionally, the included 0.5m SATA cable provides added flexibility for connecting SATA SSDs.

Whether you’re expanding your gaming storage, accelerating professional workloads, or upgrading an older system, the UGREEN CM302 M.2 M/B-Key to PCI-E 3.0 Expansion Card delivers the speed, reliability, and compatibility needed for a next-level computing experience.

FEATURES:

  • Dual SSD compatibility: Supports both NVMe (M-Key) and SATA (B-Key) M.2 SSDs
  • PCIe 3.0 x4 high-speed interface: Enables data transfer speeds up to 32Gbps (NVMe) and 6Gbps (SATA)
  • Broad SSD support: Compatible with M.2 SSD form factors 2230, 2242, 2260, and 2280, ensuring wide-ranging upgrade options.
  • Seamless system integration: Works with Windows and Linux operating systems
  • Premium Build Quality: Constructed with high-quality PCB materials
  • Enhanced cooling efficiency: Open-frame design allows for effective heat dissipation
  • Extended Compatibility: Works with PCIe 3.0 motherboards and is backward compatible with PCIe 2.0 and 1.0 slots
  • SATA Cable Included: Comes with a 0.5m SATA cable for easy SATA SSD integration

SPECIFICATIONS:

  • Input: M.2 M-Key (NVMe SSD), M.2 B-Key (SATA SSD)
  • Output: PCIe 3.0 x4, 7-Pin SATA Connector
  • Supported SSDs: M.2 NVMe & SATA SSDs (2230/2242/2260/2280)
  • Data Transfer Speeds:
    • PCIe NVMe: Up to 32Gbps
    • SATA: Up to 6Gbps
  • Compatibility: Windows, Linux
  • PCB Dimensions: L11.68 x W7.4 cm
  • Baffle Panel Length: 119mm
  • SATA Cable Length: 50cm
  • Power Requirements: Draws power directly from PCIe slot (no external power needed)
  • Build Material: High-quality PCB and metal components for durability

WHAT'S IN THE BOX:

  • UGREEN CM302 M.2 M/B-Key to PCI-E 3.0 Expansion Card x1
Brand Ugreen
Colour Black
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

UGREEN CM302 M.2 NVME to PCI-E3.0X4 Express Card
Ugreen

UGREEN CM302 M.2 NVME to PCI-E3.0X4 Express Card

R 149.00

In Stock

Cudy PE10G Network Adapter - 10Gbps, PCI Express
Cudy

Cudy PE10G Network Adapter - 10Gbps, PCI Express

R 1 199.00

In Stock

Cudy 3000Mbps WiFi 6 + BT 5.0 PCI-E Adapter
Cudy

Cudy 3000Mbps WiFi 6 + BT 5.0 PCI-E Adapter

R 599.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!