Antec GSK 850W PCIe 5.1 Gen5 80 PLUS Gold Fully Modular Power Supply - Antec | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Antec

Antec GSK 850W PCIe 5.1 Gen5 80 PLUS Gold Fully Modular Power Supply

SKU: GSK850
R 1 999.00
Out of Stock

The Antec GSK 850W PCIe 5.1 Gen5 80 PLUS Gold Fully Modular Power Supply combines cutting-edge technology with premium build quality, making it a top-tier choice for gamers and professionals. With ATX 3.1 and PCIe 5.1 compatibility, this PSU ensures seamless performance for modern systems,...

Get Notified When Available

Enter your email and we'll notify you when this item is back in stock.

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

Frequently Bought Together

The Antec GSK 850W PCIe 5.1 Gen5 80 PLUS Gold Fully Modular Power Supply combines cutting-edge technology with premium build quality, making it a top-tier choice for gamers and professionals. With ATX 3.1 and PCIe 5.1 compatibility, this PSU ensures seamless performance for modern systems, including support for NVIDIA® GeForce RTX™ 40 Series GPUs via its 12VHPWR 12V-2x6 cable. Featuring 80 PLUS Gold certification, it delivers up to 90% energy efficiency, reducing power waste and keeping your system cooler and quieter during operation. The fully modular design allows for precise cable management, eliminating clutter and improving airflow.

At the heart of the GSK 850W is its PhaseWave™ Design, a server-class LLC topology with synchronous rectification and DC-DC conversion that guarantees unparalleled stability and efficient power delivery. The power supply is equipped with high-quality Japanese capacitors, ensuring tight voltage regulation and minimal ripple for enhanced system performance and longevity. Safety is paramount, and the CircuitShield™ suite of protections—including OCP, OVP, UVP, SCP, OPP, OTP, SIP, and NLO—safeguards your components in any operating environment.

Cooling is handled by a 120mm fluid-dynamic bearing (FDB) silent fan, renowned for its durability and quiet operation. The Zero RPM Manager enhances thermal efficiency by activating the fan only when needed, offering near-silent operation during low loads. Compact and versatile, the GSK 850W is designed to fit a wide range of cases while providing exceptional reliability, efficiency, and ease of use.

FEATURES:

  • ATX 3.1 & PCIe 5.1 Compatible
  • High-Quality JP Capacitors
  • PhaseWave Design
  • 120mm FDB Silent Fan
  • Zero RPM Manager
  • Compact Size

SPECIFICATIONS:

  • Modularity: Fully Modular
  • Output Capacity: 850W
  • Input Voltage: 100V-240V
  • Input Current: 10A Max
  • Input Frequency Range: 50Hz-60Hz
  • PFC: Active PFC
  • Power Good Signal: 100-150ms
  • Protection: OCP, OVP, UVP, SCP, OPP, OTP, SIP, NLO
  • Regulatory: cTUVus / TUV / CB / RCM / CE / FCC / BSMI / KC/ UKCA / ICES
  • Fan: 120mm Silent Fan
  • Certifications: 80 Plus
  • Connectors:
    • 1 x 24 (20+4) pin MB
    • 1 x 16 (12+4) pin PCIE 5.1 12VHPWR
    • 2 x 8 (4+4) pin CPU
    • 4 x 8 (6+2) pin PCI-E
    • 8 x SATA
    • 4 x Molex
  • Product Dimensions: 14.0 x 15.0 x 8.6 cm

WHAT'S IN THE BOX:

  • Antec GSK 850W PCIe 5.1 Gen5 80 PLUS Gold Fully Modular Power Supply - Black x1
  • Modular Cables Set x1
Brand Antec
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 84 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) 850w Fully Modular PSU
FSP

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

R 3 799.00

Out of Stock

DeepCool PQ850G Series 850W 80 PLUS Gold Modular Power Supply
DEEPCOOL

DeepCool PQ850G Series 850W 80 PLUS Gold Modular Power Supply

R 1 799.00

Only 5 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!