MinisForum VENUS Celeron N100 4GB Windows 11 Home Mini PC - MINISFORUM | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
MINISFORUM

MinisForum VENUS Celeron N100 4GB Windows 11 Home Mini PC

SKU: PCB_MINI_N100_4G_HOME
R 4 999.00
Out of Stock

The MinisForum VENUS Celeron N100 4GB Windows 11 Home Mini PC takes performance to the next level in a compact form factor. Measuring just 12.7 x 12.7 x 5.4 cm, it’s perfect for fitting into tight spaces or mounting behind monitors to create a clutter-free workspace. This versatile mini-PC is...

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 MinisForum VENUS Celeron N100 4GB Windows 11 Home Mini PC takes performance to the next level in a compact form factor. Measuring just 12.7 x 12.7 x 5.4 cm, it’s perfect for fitting into tight spaces or mounting behind monitors to create a clutter-free workspace. This versatile mini-PC is powered by an Intel Celeron N100 CPU and UHD graphics, ensuring efficient performance for all your tasks. It comes equipped with 4GB of DDR4 2666MHz SODIMM memory, with one extra slot available for expansion, and a 128GB 2.5" SATA SSD with support for additional M.2 NVME storage.

The Mini-PC can support up to three displays, thanks to its HDMI, DisplayPort, and USB Type-C output ports. For connectivity, it includes M.2 2230 Wi-Fi, Bluetooth, and a 3.5mm audio jack for speakers or headphones. The Celeron 4GB 128GB Windows 11 Home Mini PC is an excellent choice for those needing a compact yet powerful solution for various business applications, whether for home media servers, call centres, or point-of-sale systems.

FEATURES:

  • Small Form Factor Mini PC
  • Intel® N100 Processor
  • 4 Cores | 4 Threads | Up to 3.40GHz
  • Intel UHD Graphics
  • 4GB DDR4 SODIMM Memory
  • Onboard Intel® Wireless-AC 9560 Wi-Fi connection
  • Triple display support with HDMI, DisplayPort, and USB Type-C

SPECIFICATIONS:

  • Processor: Intel® N100 Processor, 4 Cores/4 Threads (6M Cache, up to 3.40 GHz
  • GPU: Intel® UHD Graphics
  • Memory: Crucial 4GB DDR4 SODIMM 2666Mhz
  • Storage: Patriot P220 128GB 2.5" SATA SSD
  • Storage Expansion:
  • TF Card Slot ×1
  • M.2 2280 PCIe3.0 SSD ×1
  • Wireless Connectivity: Onboard Intel® Wireless-AC 9560 (Wi-Fi 5, Bluetooth 5.1)
  • Video Output: HDMI 2.0 ×1, USB Type-C ×1, DisplayPort 1.4 ×1
  • Audio Output: 3.5mm Audio Jack ×1
  • Ports & Buttons:
  • RJ45 1000M Ethernet Port×1
  • USB2.0 Type-A Port ×2(In Back)
  • USB3.2 Gen2 Type-A Port ×2(In Front)
  • USB3.2 Gen2 Type-C ×1(Alt Data DP and PD)
  • HDMI ×1
  • DisplayPort ×1
  • DMIC ×1
  • Audio Jack ×1
  • Clear CMOS ×1
  • Power: DC 19V/12V (Adapter Included)
  • System: Windows 11 Home
  • Product Dimensions: 12.7×12.7×5.4 cm
  • Weight: 367g

WHAT’S IN THE BOX:

  • MinisForum VENUS Celeron N100 4GB Windows 11 Home Mini PC – Silver x1
  • Power Cable x1
  • Operating Instructions x1
Brand MINISFORUM
Colour -
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 24 Months
0.0
0 reviews
Login to Review

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

Related Products

PCBuilder CUBE Intel i5-1235U 16GB DDR4 1TB Windows 11 Home Mini PC
PCBuilder

PCBuilder CUBE Intel i5-1235U 16GB DDR4 1TB Windows 11 Home Mini PC

R 11 999.00

Out of Stock

MinisForum VENUS i5-12450H 16GB Windows 11 Pro Mini PC
MINISFORUM

MinisForum VENUS i5-12450H 16GB Windows 11 Pro Mini PC

R 7 999.00

Out of Stock

PCBuilder CUBE Intel i5-1235U 16GB DDR4 1TB Windows 11 Pro Mini PC
PCBuilder

PCBuilder CUBE Intel i5-1235U 16GB DDR4 1TB Windows 11 Pro Mini PC

R 12 999.00

Out of 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!