MSI PRO H610M-S DDR4 II LGA1700 M-ATX Motherboard - MSI | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
MSI

MSI PRO H610M-S DDR4 II LGA1700 M-ATX Motherboard

SKU: PROH610M-SDDR4II
R 1 558.66
In Stock

Intel 12th/13th/14th Gen ready | PCIe 4.0 x16 slot | Up to 64 GB DDR4 | Micro-ATX form factor | 3-year warranty

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

Intel 12th/13th/14th Gen ready | PCIe 4.0 x16 slot | Up to 64 GB DDR4 | Micro-ATX form factor | 3-year warranty

The MSI PRO H610M-S DDR4 II is a Micro-ATX motherboard built for professionals and system builders who need a reliable, no-fuss foundation for an Intel-based productivity PC. Designed around the Intel H610 chipset and LGA1700 socket, it supports Intel Core 12th, 13th, and 14th Gen processors — as well as Pentium Gold and Celeron — giving you flexibility whether you're building new or upgrading. Two DDR4 memory slots accommodate up to 64 GB of dual-channel RAM, while a PCIe 4.0 x16 slot delivers the bandwidth needed for a capable discrete GPU. An M.2 slot (PCIe 3.0 x4) keeps fast NVMe storage tidy and off the SATA lanes, alongside four SATA 6 Gb/s ports for additional drives. Rear connectivity includes HDMI 1.4 (up to 4K 30 Hz on processors with integrated graphics), a VGA output, Gigabit LAN, and a mix of USB 2.0 and USB 3.2 Gen 1 5 Gbps Type-A ports. MSI's Core Boost power design, EZ Debug LEDs for straightforward troubleshooting, and the MSI Center software suite round out a board engineered to keep your workday running smoothly.

Features

  • Supports Intel Core 14th, 13th, and 12th Gen processors on the LGA1700 socket, plus Intel Pentium Gold and Celeron
  • PCIe 4.0 x16 slot (from CPU) for high-bandwidth discrete graphics cards, with Steel Armor reinforcement
  • Two DDR4 memory slots supporting up to 64 GB in dual-channel configuration
  • 1x M.2 slot (PCIe 3.0 x4) for NVMe SSDs in 2242, 2260, and 2280 form factors
  • 4x SATA 6 Gb/s ports for additional storage devices
  • Rear display outputs: HDMI 1.4 (4K 30 Hz) and VGA — available on CPUs with integrated graphics
  • Realtek ALC897 7.1-channel High Definition Audio codec
  • Realtek RTL8111H Gigabit LAN controller with MSI AI LAN Manager for traffic prioritisation
  • 4x EZ Debug LEDs for quick fault diagnosis during POST
  • MSI Core Boost technology for stable, optimised power delivery to the CPU
  • TPM 2.0 header included; Windows 11 64-bit compatible

Specifications

  • Socket: LGA1700
  • Chipset: Intel H610
  • Form Factor: Micro-ATX
  • Memory Type: DDR4
  • Memory Slots: 2
  • Max Memory: 64GB
  • M.2 Slots: 1
  • PCIe Version: PCIe 4.0 x16 (from CPU), PCIe 3.0 x1 (from Chipset)
  • LAN Speed: 1 Gbps
  • Rear USB Ports: 4x USB 2.0 Type-A,2x USB 3.2 Gen 1 5Gbps Type-A
  • Colour: Black/Silver
  • Product Dimensions: 23.6 x 20 cm

What's in the Box

  • MSI PRO H610M-S DDR4 II LGA1700 M-ATX Motherboard x1
  • SATA Cable x1
  • I/O Shield x1
  • M.2 Screw/Standoff Set x1
  • Quick Start Guide x1
Brand MSI
Colour Black/Silver
Form Factor Micro-ATX
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 36 months
0.0
0 reviews
Login to Review

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

Related Products

ASUS PRO B760M C CSM LGA 1700 M-ATX Motherboard
ASUS

ASUS PRO B760M C CSM LGA 1700 M-ATX Motherboard

R 2 544.95

Only 2 left - order soon!

MSI H810M-B PRO LGA1851 M-ATX DDR5 Motherboard
MSI

MSI H810M-B PRO LGA1851 M-ATX DDR5 Motherboard

R 2 337.31

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!