Alienware m15 R4 Gaming Laptop (2021) | 15.6

$36.24
$3,697.23
-99%
Title:  Default Title
Quantity

Description

Brand 
Model NameAlienware m15 R4 Laptop
Screen Size15.6 Inches
ColorDark Side of the Moon
Hard Disk Size4000 GB
CPU ModelCore i7
Ram Memory Installed Size16 GB
Operating SystemWindows 11 Home
Special FeatureWifi & Bluetooth
Graphics Card DescriptionNvidia GeForce RTX 3070

 

  • [ Intel Core i7 Gaming Processor The 15" Alienware m15 R4 Gaming Laptop in  Alienware family comes with all the latest technology including DDR4 Memory clocked at a whopping 3200MHz and a 10th generation Intel 8-core Processor. The Eight cores on the the Core i7-10870H processor allows for exceptional multitasking. To save power and prolong battery life the processor will run @ 2.2Ghz under low use but will boost to 5GHz under heavy use for powerful performance!
  • [ Display & Graphics ]This Alienware m15 R4 Gaming Laptop comes with a 15.6" Non-Touch Screen with FHD (1920x1080) resolution for stunningly clear visuals and a dedicated Nvidia GeForce RTX 3070 graphics card with 8GB of Dedicated Graphics Ram great for gaming or photo and video editing
  • [ High Speed RAM And Enormous Space ]The 16GB DDR4 RAM Running @ 3200MHz will let you smoothly run multiple applications and browser tabs all at once and a 4TB (4000GB) PCIe NVMe M.2 Solid State Drive and a second 4TB (4000GB) PCIe NVMe M.2 Solid State Drive will provide fast startup, fast data transfers, and allow for large file storage!
  • [ Operating System ] Windows 11 is Microsoft's latest Operating System released in 2022 and if you want to downgrade to the older windows 10, you can downgrade with an easy download from Microsoft's website.The Home Edition will come with everything you need but you can also upgrade to windows pro from the windows store for $100.
  • [ Extra Details ]A Wecbam comes integrated. Wifi and Bluetooth come integrated. [ PORTS & SLOTS ]MicroSD-Card Reader | (2x) USB 3.2 Gen 1 Type-A | HDMI 2.1b with HDCP 2.2 Output | Mini DisplayPort 1.4 Output | Thunderbolt 3 Port | Alienware Graphics Amplifier Port | Power/DC-In Port | Wedge-Shaped Lock Slot (cable and lock sold separately) | Killer Networks E3100x Gigabit Ethernet NIC | USB 3.2 Gen 1 Type-A with Powershare Technology |

 

 

PORTS & SLOTS

  1. MicroSD-Card Reader
  2. (2x) USB 3.2 Gen 1 Type-A
  3. HDMI 2.1b with HDCP 2.2 Output
  4. Mini DisplayPortâ„ 1.4 Output
  5. Thunderboltâ„ 3 Port
  6. Alienware Graphics Amplifier Port
  7. Power/DC-In Port
  8. Wedge-Shaped Lock Slot (cable and lock sold separately)
  9. Killerâ„ Networks E3100x Gigabit Ethernet NIC
  10. USB 3.2 Gen 1 Type-A with Powershare Technology


Features & Design

 

DIMENSIONS & WEIGHT

With Non-OLED display
1. Height (Front): 0.701" (17.8mm) | Height (Peak): 0.783" (19.9mm) | Height (Rear): 0.776" (19.7mm) | 2. Width: 14.19" (360.3mm) | 3. Depth: 10.863" (275.92mm)
Starting weight: 4.65 Lbs (2.11 Kg) | Maximum weight: 5.5 Lbs (2.5 Kg)*

With OLED display
1. Height (Front): 0.7240" (18.39mm) | Height (Peak): 0.807" (20.5mm) | Height (Rear): 0.776" (19.7mm) | 2. Width: 14.19" (360.3mm) | 3. Depth: 10.879" (276.32mm)
Starting weight: 4.65 Lbs (2.11 Kg) | Maximum weight: 5.5 Lbs (2.5 Kg)*

Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.