Antec CSK 850W Pro PCle5.1 Gen5 80 Plus Bronze Semi-Modular Power Supply - Antec | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Antec

Antec CSK 850W Pro PCle5.1 Gen5 80 Plus Bronze Semi-Modular Power Supply

SKU: CSK850 PRO
R 1 279.00 R 1 399.00
You save R 120.00 (9%)
In Stock
You save R 120.00 (9% off)

The Antec CSK 850W Pro PCle5.1 Gen5 80 Plus Bronze Semi-Modular Power Supply offers a powerful blend of efficiency, performance, and reliability, making it an ideal choice for modern gaming and professional PC builds. Certified for ATX 3.1 and PCIe 5.1 standards, this PSU is designed to meet the...

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

Frequently Bought Together

The Antec CSK 850W Pro PCle5.1 Gen5 80 Plus Bronze Semi-Modular Power Supply offers a powerful blend of efficiency, performance, and reliability, making it an ideal choice for modern gaming and professional PC builds. Certified for ATX 3.1 and PCIe 5.1 standards, this PSU is designed to meet the rigorous demands of cutting-edge hardware, including seamless compatibility with NVIDIA® GeForce RTX™ 40 Series GPUs via its 12V-2x6 PCIe 5.1 GPU cable. With its 850W of Continuous Power and 80 PLUS® Bronze certification, the CSK Pro delivers up to 90% energy efficiency, ensuring a cooler, quieter, and more cost-effective system.

Engineered for durability and safety, the CSK Pro features Antec’s CircuitShield™ suite of industrial-grade protections, including safeguards like OCP, OVP, UVP, SCP, OPP, OTP, SIP, and NLO, providing robust defense against potential electrical issues. Its 120mm silent fan, paired with the Thermal Manager low voltage fan control system, optimizes airflow and temperature management, allowing for quiet and stable operation even under heavy loads. The compact design of this PSU makes it compatible with a wide range of PC cases, offering versatility for diverse build configurations.

The semi-modular cable system of the CSK Pro enables a streamlined setup, reducing cable clutter and enhancing internal airflow for improved system cooling. This thoughtful design not only ensures better organization but also contributes to a cleaner overall aesthetic. Backed by Antec’s 5-year warranty, the CSK 850W Pro delivers exceptional value and reliability, making it a top-tier choice for users seeking high-quality power delivery for their advanced systems.

Features:

  • ATX 3.1 & PCIe 5.1 Compatible
  • 80 Plus® Bronze Certified
  • 120mm Silent Fan
  • Thermal Manager
  • Better cable management and airflow
  • Compact Size

Specifications:

  • Modularity: Semi-Modular
  • Output Capacity: 850W
  • Input Voltage: 200-240 V
  • Input Current: 5A Max
  • Input Frequency Range: 50Hz
  • PFC: Active PFC
  • Power Good Signal: 100-150ms
  • Protection: OCP, OVP, UVP, SCP, OPP, OTP, SIP, NLO
  • Regulatory: TUV / CB / RCM / CE / BIS / UKCA / KC
  • Fan: 120mm Silent Fan
  • Certifications: 80 Plus Bronze 230V EU
  • Connectors:
    • 1 x 24 (20+4) pin MB
    • 1 x 16 (12+4) pin PCIE 5.1 12V-2x6 (600W)
    • 2 x 8 (4+4) pin CPU
    • 4 x 8 (6+2) pin PCI-E
    • 6 x SATA
    • 3 x Molex
  • Product Dimensions: 29.65 x 20.3 x 13.0 cm

What’s In The Box:

  • Antec CSK 850W Pro PCle5.1 Gen5 80 Plus Bronze Semi-Modular Power Supply - Black x1
Brand Antec
Colour Black
Form Factor -
Interface -
Capacity -
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

-12%
FSP Hydro M Pro 800W 80PLUS Bronze Gen5 Semi-modular Power Supply
FSP

FSP Hydro M Pro 800W 80PLUS Bronze Gen5 Semi-modular Power Supply

R 1 489.00 R 1 699.00

Save R 210.00

In Stock

-9%
FSP Hydro M Pro 700W 80PLUS Bronze Gen5 Semi-modular Power Supply
FSP

FSP Hydro M Pro 700W 80PLUS Bronze Gen5 Semi-modular Power Supply

R 1 359.00 R 1 499.00

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