Acer Extensa 15.6″ Laptop | Intel Core i5-120U | 16GB DDR5 | 512GB NVMe | Intel Graphics | Windows 11 Pro - - | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
-

Acer Extensa 15.6″ Laptop | Intel Core i5-120U | 16GB DDR5 | 512GB NVMe | Intel Graphics | Windows 11 Pro

SKU: NX.EJ9EA.011
R 18 169.95
In Stock

Intel Core 5 120U performance | 16GB DDR5 memory | 512GB NVMe SSD | Wi-Fi 6 connectivity | Windows 11 Pro ready

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 Core 5 120U performance | 16GB DDR5 memory | 512GB NVMe SSD | Wi-Fi 6 connectivity | Windows 11 Pro ready

Dependable performance for the South African professional

The Acer Extensa 15 (EX215-57) is built for professionals who need a reliable, capable office notebook that keeps pace with a demanding workday. Powered by the Intel Core 5 120U processor and backed by 16GB of DDR5 memory, it handles spreadsheets, video calls, document management, and multitasking without hesitation — a solid foundation for productivity at the desk or on the go.

Swift storage, smooth everyday workflows

Tired of waiting for applications to load or files to transfer? The 512GB PCIe NVMe SSD delivers fast read and write speeds that keep your workflow moving. Whether you are opening large presentations, saving project files, or switching between applications, the Extensa 15 responds without the delays associated with traditional hard drives.

A connected workspace, wherever you are

Wi-Fi 6 (802.11ax) keeps you connected to fast, reliable networks at the office, at home, or in co-working spaces. The versatile port selection — including two full-function USB 3.2 Gen2 Type-C ports with Power Delivery and DisplayPort 1.4, HDMI 2.1, and two USB 3.2 Gen1 Type-A ports — means you can connect monitors, peripherals, and accessories without hunting for adapters. A headphone jack and Kensington Lock round out a practical, office-ready connectivity suite.

A professional tool, ready from day one

The Extensa 15 ships with Windows 11 Pro pre-installed, giving IT administrators and business users access to advanced security features, remote desktop capabilities, and enterprise management tools straight out of the box. The 15.6-inch FHD display delivers a crisp 1920×1080 resolution that is easy on the eyes during long working sessions, while the 53 Wh battery provides the capacity to carry you through a full day of office use.

Features

  • Intel Core 5 120U processor delivers responsive performance for everyday business tasks and multitasking.
  • 16GB DDR5 memory keeps multiple applications running smoothly without slowdown.
  • 512GB PCIe NVMe SSD provides fast storage for quick boot times and rapid file access.
  • 15.6-inch FHD (1920×1080) Acer ComfyView LED LCD display for clear, comfortable viewing.
  • Wi-Fi 6 (802.11ax) with Bluetooth for fast, reliable wireless connectivity.
  • Two full-function USB 3.2 Gen2 Type-C ports support Power Delivery (20V), DisplayPort 1.4, and data transfer.
  • HDMI 2.1 output for connecting an external monitor or display.
  • Windows 11 Pro pre-installed for enterprise-ready security and management features.
  • Kensington Lock slot for physical security in shared office environments.

Specifications

  • Screen Size: 15.6"
  • Resolution: FHD (1920x1080)
  • Panel Refresh Rate: 60Hz
  • Processor: Intel Core 5 120U
  • Memory: 16GB
  • Storage: 512GB
  • Graphics: Intel UMA (Integrated Graphics)
  • Operating System: Windows 11 Pro
  • Battery Capacity: 53Wh
  • Backlit Keyboard: No
  • Touchscreen: No
  • Wi-Fi Standard: Wi-Fi 6 (802.11ax)
  • Ports:
    • 1x HDMI 2.1
    • 2x USB 3.2 Gen2 Type-C (Full function: PD 20V + DP1.4 + USB 2.0/3.2)
    • 2x USB 3.2 Gen1 Type-A
    • 1x Headphone jack
    • 1x Kensington Lock
  • Colour: Pure Silver
  • Warranty: 12 months
  • Product Dimensions: 36.2 x 23.7 x 19.9 cm
  • Product Weight: 1800g

What's in the Box

  • Acer Extensa 15 Laptop (EX215-57) – Pure Silver x1
  • 65W USB Type-C Adapter x1
Brand -
Colour Pure Silver
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size 15.6"
Resolution FHD (1920x1080)
Refresh Rate -
Cpu -
Cpu Socket -
Warranty -
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!