MSI MAG Z890 TOMAHAWK WIFI Intel LGA1851 ATX Gaming Motherboard - MSI | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
MSI

MSI MAG Z890 TOMAHAWK WIFI Intel LGA1851 ATX Gaming Motherboard

SKU: MAGZ890TOMAHAWKWIFI
R 7 699.00
Only 1 left!
Only 1 left in stock - order soon!

MAG Z890 TOMAHAWK WIFI is designed for gamers with a stable, durable and DIY friendly foundation for their PC builds. Coming up with Killer Wi-Fi 7 solution and 5G LAN, Thunderbolt 4, PCIe 5.0 solutions, Supplemental PCIe Power and exclusive EZ DIY features, it's ready for the battlefield of Intel...

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

Frequently Bought Together

MAG Z890 TOMAHAWK WIFI is designed for gamers with a stable, durable and DIY friendly foundation for their PC builds. Coming up with Killer Wi-Fi 7 solution and 5G LAN, Thunderbolt 4, PCIe 5.0 solutions, Supplemental PCIe Power and exclusive EZ DIY features, it's ready for the battlefield of Intel Core Ultra processors.

The MSI ARSENAL GAMING (MAG) series is engineered to give gamers the edge they need to dominate on the virtual battlefield. Inspired by the rugged durability and unwavering reliability of military-grade equipment, the MAG series is built to provide an unwavering defense in every gaming scenario.

However, MAG isn't just about performance; it's a design language that conveys ruggedness and toughness, embodying the very essence of the MAG style. For gamers who are determined to dominate their digital battlegrounds, the MAG series is here to stand with you, establishing the ultimate defense.

MSI motherboards are designed with advanced hardware and technology, well-supporting the demanding computing usage of gaming and AI. Moreover, we also introduce AI to MSI Center and BIOS, making everything more effortless than before.

FEATURES:

  • Support Intel® Core™ Ultra Processors (Series 2) for LGA 1851 socket
  • Supports DDR5 Memory, Dual Channel DDR5 9200+ MT/s (OC)
  • Ultra Performance: 16+1+1+1 Duet Rail Power System 90A SPS, dual 8-pin CPU power connectors, Core Boost, Memory Boost, 6-layer PCB made by 2oz thickened copper and server-grade level material
  • Frozr Guard: Extended Heatsink, MOSFET thermal pads rated for 7W/mK, additional choke thermal pads and EZ M.2 Shield Frozr II are built for high performance system and non-stop experience
  • EZ DIY: EZ PCIe Release, EZ M.2 Shield Frozr II, EZ M.2 Clip II and EZ Antenna
  • Lightning Fast Game experience: PCIe 5.0 slot, Lightning Gen 5 x4 M.2
  • Ultra Connect: Thunderbolt™ 4 port, Intel® Killer™ 5G LAN & Intel® Killer™ Wi-Fi 7 Solution - the latest solution for professional and multimedia use, delivering secure, stable, and high-speed networking and data transmission
  • Audio Boost 4: Reward your ears with studio grade sound quality for the most immersive gaming experience

SPECIFICATIONS:

  • Socket: LGA 1851
  • CPU: Supports Intel® Core™ Ultra Processors (Series 2)
  • Chipset: INTEL Z890
  • DDR5 Memory: 9200 - 6400 (OC) MT/s / 6400 - 4800 (JEDEC) MT/s
  • Memory Channel: Dual
  • DIMM Slots: 4
  • Max Memory Support: 256GB
  • PCI-E x16: 3
  • SATA 6G: 4
  • M.2 Slot: 4
  • RAID: 0/1/5/10
  • LAN: Intel® Killer™ E5000 5Gbps LAN
  • Wi-Fi and Bluetooth: Intel® Killer™ BE1750x Wi-Fi 7
  • USB 3.2 ports (Front): 1x (20Gbps Type C), 2x (5Gbps Type A)
  • USB 3.2 ports (Rear): 1x (10Gbps Type C), 3x (10Gbps Type A), 4x (5Gbps Type A)
  • Thunderbolt: 2x (40Gbps Type C)
  • USB 2.0 ports (Front): 4
  • Audio ports (Rear): Realtek® ALC1220P Codec
  • HDMI: 1
  • Type-C (DisplayPort): 2
  • DirectX: 12
  • Form Factor: ATX
  • Operating System: Support for Windows® 11 64-bit

WHAT'S IN THE BOX

  • MSI MAG Z890 TOMAHAWK WIFI Intel LGA1851 ATX Gaming Motherboard x1
  • SATA Cables x2
  • EZ M.2 Clip II x2
  • EZ M.2 Clip II Remover x1
  • USB Drive x1
  • Cable Sticker Pack x1
  • EZ Wi-Fi Antenna
  • 1 to 3 EZ Conn-Cable (V2) x1
  • EZ Front Panel Cable x1
Brand MSI
Colour Black
Form Factor ATX
Interface -
Capacity -
Memory Capacity 256GB
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket LGA 1851
Warranty 36 Months
0.0
0 reviews
Login to Review

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

Related Products

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