MINISFORUM UN100S Intel N100 Processor Barebone - MINISFORUM | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
MINISFORUM

MINISFORUM UN100S Intel N100 Processor Barebone

SKU: UN100S
R 4 899.00
Out of Stock

The MinisForum Venus Series Barebone Mini PC is the next step in performance in a small form factor size. It features a compact design at only 12.7 x 12.7 x 5.4 cm in size, making it ideal to fit into any small space or behind monitors for a clutter-free desk space, it’s also ideal for when not a...

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 Series Barebone Mini PC is the next step in performance in a small form factor size. It features a compact design at only 12.7 x 12.7 x 5.4 cm in size, making it ideal to fit into any small space or behind monitors for a clutter-free desk space, it’s also ideal for when not a lot of desk space is available. These versatile mini PCs come with a reliable Intel® N100 Processor with UHD Graphics to ensure every task is completed on time. They also support DDR4 SODIMM memory with 1 slot to expand your memory as well as support for a PCIe 4.0 M.2 2280 SSD.

The Venus Series also supports up to 3 displays thanks to its HDMI, DisplayPort, and USB Type-C output ports. For connectivity, it supports onboard Wi-Fi and Bluetooth 5.1. It also comes with a 3.5mm audio jack for speakers or headphones. The MinisForum Venus Series is ideal for those looking for something compact yet powerful for various business applications, from home media servers to call centres or point-of-sale machines.

FEATURES:

  • Small Form Factor Mini PC
  • Intel® N100 Processor
  • 4 Cores | 4 Threads | Up to 3.40GHz
  • Intel UHD Graphics
  • Dual DDR4 SODIMM slots x 1
  • 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: DDR4 Single Channel (SODIMM slot, up to 3200Mhz, Max 16GB)
  • Storage: M.2 2280 PCIe3.0 SSD ×1(PCIe 3.0 ×2)
  • Storage Expansion:
    • TF Card Slot ×1
    • 2.5 inch SATA3.0 HDD Slot ×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
  • Product Dimensions: 12.7×12.7×5.4 cm
  • Weight: 367g

WHAT’S IN THE BOX:

  • MinisForum VENUS Series UN100S N100 Barebone Mini PC – Silver x1
  • Power Cable x1
  • Operating Instructions x1
Brand MINISFORUM
Colour Silver
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

Giada DN25 Raspberry Pi Compact Signage Player - CM5 Lite
Giada

Giada DN25 Raspberry Pi Compact Signage Player - CM5 Lite

R 4 399.00

Out of Stock

Giada F106D Celeron N5100 4GB eMMC
Giada

Giada F106D Celeron N5100 4GB eMMC

R 6 999.00

Out of Stock

Giada D613 i3-1315U 2x DDR4 3200Mhz
Giada

Giada D613 i3-1315U 2x DDR4 3200Mhz

R 10 499.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!