Antec NeoEco Series 1000W GEN5 80 Plus Gold Fully Modular - Antec | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Antec

Antec NeoEco Series 1000W GEN5 80 Plus Gold Fully Modular

SKU: NE1000G M
R 2 499.00 R 2 699.00
You save R 200.00 (7%)
Only 4 left!
Only 4 left in stock - order soon!
You save R 200.00 (7% off)

Presenting the Antec NE1000G M ATX 3.0 power supply, intended for the gaming and enthusiast markets with maximum performance and stability in mind. You can expect peak performance from your system with modern features like ATX 3.0 and high-quality JP capacitors, unrivalled stability, and 80 PLUS®...

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

Frequently Bought Together

Presenting the Antec NE1000G M ATX 3.0 power supply, intended for the gaming and enthusiast markets with maximum performance and stability in mind. You can expect peak performance from your system with modern features like ATX 3.0 and high-quality JP capacitors, unrivalled stability, and 80 PLUS® Gold-certified efficiency. The PhaseWave™ Design guarantees consistent power output, while the 120mm FDB Quiet Fan provides silent cooling. The power supply is also 100% modular, making wire management and customization a breeze. The Zero RPM Manager provides superior thermal control, ensuring the best balance of silent operation and efficient cooling. The CircuitShield™ industrial-grade protection suite ensures safe and dependable power delivery in any situation. The Antec NE1000G M ATX 3.0 is the perfect choice for building a reliable and efficient PC system for gamers and professionals.

Features:

  • Fully-Modular
  • 1000W continuous power
  • 80 PLUS®
  • ATX 3.0 & PCIe 5.0 Compatible
  • High-Quality JP Capacitors
  • PhaseWave TM Design
  • 120mm FDB Silent Fan
  • Antec CircuitShield™ – A full suite of industrial-grade protection

Specifications:

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

What’s In The Box:

  • Antec NE1000G M ATX 3.0 Modular ATX Power Supply – Black x1
Brand Antec
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

-7%
Antec NeoECO Gold Modular 850W Power Supply Unit (80 PLUS® Gold, PCIe 5.0 Ready, Full Modular)
-8%
MSI MAG A850GL PCIe5 ATX3.1 80 PLUS Gold Modular Power Supply
MSI

MSI MAG A850GL PCIe5 ATX3.1 80 PLUS Gold Modular Power Supply

R 2 169.00 R 2 349.00

Save R 180.00

Out of Stock

-13%
MSI MPG A1000GS PCIe 5 80 PLUS Gold Modular Power Supply
MSI

MSI MPG A1000GS PCIe 5 80 PLUS Gold Modular Power Supply

R 2 709.00 R 3 099.00

Save R 390.00

Out of Stock

-10%
FSP VITA GM 1000W Gold Power Supply - ATX 3.1, PCIe 5.1, 80 Plus Gold
FSP

FSP VITA GM 1000W Gold Power Supply - ATX 3.1, PCIe 5.1, 80 Plus Gold

R 2 569.00 R 2 849.00

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