FSP Dagger Pro ATX3.0 (PCIe 5.0) 850w Fully Modular PSU - FSP | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
FSP

FSP Dagger Pro ATX3.0 (PCIe 5.0) 850w Fully Modular PSU

SKU: SDA2-850GEN5
R 3 946.53
Available on Backorder

The DAGGER PRO 850W is a power supply with 80 PLUS® Gold Certification that guarantees to operate at a minimum of 90% efficiency at 50% the load of the PSU-rated power and as a result, reduces lots of electricity costs. The Fully-modular design and flat ribbon cables provide easier installation....

This item is on backorder — new stock is expected around 7 Sep 2026. Order now and we'll ship yours as soon as it arrives.

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support
Secure payment — PayFast & Yoco · 256-bit SSL encrypted

Frequently Bought Together

The DAGGER PRO 850W is a power supply with 80 PLUS® Gold Certification that guarantees to operate at a minimum of 90% efficiency at 50% the load of the PSU-rated power and as a result, reduces lots of electricity costs. The Fully-modular design and flat ribbon cables provide easier installation. An ideal solution for applications with space constraints, enhancing overall airflow efficiency and cable management.

The DAGGER PRO 850W comes with a native PCIe 5.0 connector for the latest graphic card and features dual CPU power connectors to support high-end motherboards for gaming enthusiasts. The VGA card is a component which needs greedy and stable power support most. The compact-sized DAGGER PRO ATX3.0 850W comes with a single +12V rail design that offers VGA cards full power individually and to avoid any overloading conditions.

It is compatible with most Mini-ITX and Micro ATX small form factor PCs. It is ideal for home computer rigs but a great alternative for mini-PC enthusiasts. It Adapts to your individual requirements, not only does it fit into cases with the SFX form factor but can also be installed in a simple step into normal ATX, Micro-ATX or Mini-ITX cases.

FEATURES:

  • Compliance with ATX12V V3.0
  • Compliance with PCIe 5.0
  • Efficiency ≧ 90% at typical load
  • MIA IC (Multiple Intelligence Ability) chipset inside
  • Semi-fanless design for silent operation
  • Quiet and long-lasting 92mm ball bearing fan
  • Ribbon cables for the need of enthusiasts
  • Powerful single +12V rail design
  • Intel's Latest CPU ready
  • Japanese electrolytic capacitors
  • Full protections with OCP, OVP, SCP, OPP, OTP

SPECIFICATIONS:

  • Rated Output Power: 850W
  • Form Factor: SFX
  • 80 PLUS Certification: Gold
  • Input Voltage: 100-240V
  • Input Current: 12-6A
  • Input Frequency: 50-60Hz
  • PFC: Active PFC
  • Efficiency: 90%
  • Fan Type: ball bearing fan,92mm
  • Operation Temp: 200,000 Hrs
  • Protection: OCP, OVP, SCP, OPP, OTP
  • AC Input: 100-240Vac~ 12-6A 50-60Hz
  • DC Output: +3.3V(20A), +5V(20A), +12V(70.83A), -12V(0.3A), +5Vsb(2.5A)
  • Connectors:
  • ATX 20+4 x1
  • 4+4 PIN x2
  • PCIe 6+2 x4
  • 12VHPWR x1
  • SATA x6
  • Molex (peripheral) x2
  • Product Dimensions: 12.5 × 10 × 6.4 cm

WHAT’S IN THE BOX:

  • FSP DAGGER PRO 850W Modular PSU x1
  • Modular Cables Set x1
Brand FSP
Colour Black
Form Factor ATX
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 120 Months
0.0
0 reviews
Login to Review

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

Related Products

FSP Dagger Pro ATX3.0 (PCIe 5.0) 750w Fully Modular PSU
FSP

FSP Dagger Pro ATX3.0 (PCIe 5.0) 750w Fully Modular PSU

R 3 333.99

Out of Stock

FSP Hydro PTM Pro ATX3.0(PCIe) 1200w Fully Modular PSU
FSP

FSP Hydro PTM Pro ATX3.0(PCIe) 1200w Fully Modular PSU

R 5 919.12

Only 1 left - order soon!

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