UGREEN USB 3.0 to 2.5” SATA Hard Drive Enclosure (Non-Detachable Cable) - Ugreen | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Ugreen

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

SKU: US221-30847
R 179.00 R 219.00
You save R 40.00 (18%)
In Stock
You save R 40.00 (18% off)

Got an old laptop hard drive lying around? Or need an easy way to back up important files? The UGREEN USB 3.0 to 2.5” SATA Hard Drive Enclosure lets you repurpose your 2.5″ HDD or SSD as a portable external drive. Simply pop in your drive, connect it to your computer, and enjoy fast, reliable...

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

Frequently Bought Together

Got an old laptop hard drive lying around? Or need an easy way to back up important files? The UGREEN USB 3.0 to 2.5” SATA Hard Drive Enclosure lets you repurpose your 2.5″ HDD or SSD as a portable external drive. Simply pop in your drive, connect it to your computer, and enjoy fast, reliable storage.

With support for SATA III and UASP technology, this enclosure delivers transfer speeds of up to 6Gbps—up to 70% faster than standard USB 3.0. That means quicker file transfers, smoother backups, and better overall performance. It works with 7mm and 9.5mm 2.5″ SATA drives up to 10TB, including popular models from WD, Seagate, Samsung, Kingston, and more.

No tools? No problem. The tool-free design lets you install or swap drives in seconds. Plus, it’s lightweight and compact, so you can take your files with you wherever you go. Whether you’re upgrading storage, backing up data, or recovering files, this enclosure makes the process simple and stress-free. Compatible with Windows, macOS, and Linux, it’s a plug-and-play solution for anyone who needs extra storage on the go.

FEATURES:

  • Super-Fast Data Transfers: Supports SATA III with UASP technology for speeds up to 6Gbps
  • Universal Compatibility: Works with 2.5″ SATA I/II/III HDDs and SSDs up to 10TB
  • Tool-Free Installation: Slide your hard drive or SSD in, connect, and go
  • Plug-and-Play: Works with Windows, macOS, and Linux and more
  • Portable and Durable: Lightweight yet sturdy design
  • USB 3.0 Connectivity: Backward compatible with USB 2.0 and 1.1

SPECIFICATIONS:

  • Input: USB A 3.0 Male
  • Output: (7+15)Pin SATA 3.0 Port
  • Drive Interface: 2.5” SATA I/II/III
  • Chipset: VL711F0
  • SATA Speed: Up to 6Gbps (SATA III), backwards compatible with SATA II/1.0
  • Transfer Rate: Up to 5Gbps (USB 3.0), backwards compatible with USB 2.0/1.1
  • Storage Capacity: Up to 10TB HDD/SSD
  • Operating System Support: Windows 2000/XP/Vista/7/8/8.1/10, Linux, macOS 8.0 and higher
  • Drive Thickness: 7mm and 9.5mm drives
  • Size: 12.8.5 x 8.2 x 1.4 cm
  • Cable Length: 30cm

WHAT’S IN THE BOX:

  • The UGREEN USB 3.0 to 2.5” SATA Hard Drive Enclosure (Non-Detachable Cable) 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

-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

-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

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

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

R 309.00 R 399.00

Save R 90.00

In 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!