Patriot Viper VP4300 Lite 1TB Gen 4 M.2 PCIe NVMe SSD - Patriot | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Patriot

Patriot Viper VP4300 Lite 1TB Gen 4 M.2 PCIe NVMe SSD

SKU: VP4300L1TBM28H
R 5 879.00
Only 3 left!
Only 3 left in stock - order soon!

The Patriot Viper VP4300 Lite 1TB Gen4 NVMe SSD is engineered for gamers and power users who demand peak performance, durability, and compatibility across platforms. Equipped with the latest PCIe Gen4 x4 controller and compliant with NVMe 2.0, this high-speed storage solution delivers blazing-fast...

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

Frequently Bought Together

The Patriot Viper VP4300 Lite 1TB Gen4 NVMe SSD is engineered for gamers and power users who demand peak performance, durability, and compatibility across platforms. Equipped with the latest PCIe Gen4 x4 controller and compliant with NVMe 2.0, this high-speed storage solution delivers blazing-fast sequential read speeds of up to 7,400MB/s and write speeds of up to 6,400MB/s. Whether you're booting up your PC or loading next-gen games on your PlayStation® 5, the VP4300 Lite guarantees a seamless experience with PS5-compatible read speeds up to 6,100MB/s.

Designed with a DRAMless architecture for power efficiency, the VP4300 Lite supports Host Memory Buffer (HMB), Toggle 5, and ONFi 5 mode flash to enable double data rates of up to 2,400MT/s. It also incorporates SmartECC™ technology and an embedded thermal sensor that actively manages heat and prevents performance throttling. The ultra-slim graphene heatshield not only maintains consistent thermal levels but also ensures universal fit inside compact gaming laptops, desktops, and PlayStation 5 consoles.

With an endurance rating of 800TBW and an impressive 1.8 million-hour MTBF, this SSD is built for long-term reliability. Backed by a 5-year warranty, the VP4300 Lite delivers an exceptional blend of speed, storage capacity, and robust protection for modern gaming environments and creative workflows.

FEATURES:

  • Seq. Read/Write speeds up to 7,400 / 6,400MB/s
  • Special edition ultra-thin cooling heat spreader
  • PS5 compatible, Seq. Read up to 6,100MB/s
  • Huge storage capacity of 1TB
  • Latest NVMe 2.0 support
  • 5-year warranty

SPECIFICATIONS:

  • Capacity: 1,000 GB
  • Form Factor & Interface: M.2 2280 PCIe Gen4 x4 NVMe 2.0
  • Seq. Read/Write (MB/s): 7,400 / 6,400
  • Endurance (TBW): 800 TB
  • Operating Temperature: 0°C–70°C
  • Operating System: Windows® 7* / 8.0* / 8.1 / 10 / 11 *May require drivers depending on system conditions
  • MTBF: 1,800,000 hours
  • Dimension: 2.2 x 0.38cm x 8 cm
  • Weight: 9g

WHAT'S IN THE BOX:

  • Patriot Viper VP4300 Lite 1TB Gen 4 M.2 PCIe NVMe SSD x1
Brand Patriot
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 60 Months
0.0
0 reviews
Login to Review

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

Related Products

Patriot P220 256GB 2.5" SSD
Patriot

Patriot P220 256GB 2.5" SSD

R 1 449.00

Out of Stock

Crucial T705 2TB M.2 NVMe Gen5 NAND SSD
Crucial

Crucial T705 2TB M.2 NVMe Gen5 NAND SSD

R 7 879.00

Out of Stock

Patriot Viper VP4000 Mini 1TB M.2 2230 PCIe Gen4x4 SSD
Patriot

Patriot Viper VP4000 Mini 1TB M.2 2230 PCIe Gen4x4 SSD

R 5 309.00

Out of Stock

Crucial P310 1TB Gen4 M.2 2230 NVMe 3D NAND SSD
Crucial

Crucial P310 1TB Gen4 M.2 2230 NVMe 3D NAND SSD

R 3 279.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!