2023 Newest Lenovo ThinkPad P17 Gen 2 Mobile Workstation Business Laptop, 17.3

$19.60
$2,099.00
-99%
Size:  P17|16GB RAM|512GB SSD
Quantity

Description

Brand LPT
Model Name ThinkPad P17
Screen Size 17.3 Inches
Color Black
Hard Disk Size 1 TB
CPU Model Core i7
Ram Memory Installed Size 32 GB
Operating System Windows 10 Pro
Special Feature Anti-glare,Fingerprint Reader
Graphics Card Description Dedicated

  • 17.3" FHD (1920 x 1080) IPS, Non-touch, anti-glare, 300 nits; IR & 720p HD Camera
  • 11th Generation Intel Core i7-11800H Processor (2.30 GHz, up to 4.60 GHz with Turbo Boost, 8 Cores, 16 Threads, 24 MB Cache); Fingerprint Reader
  • 32GB DDR4 3200 MHz RAM, 1TB PCIe SSD Gen 4, NVIDIA RTX A2000 4GB
  • 2 x USB-C Thunderbolt 4 | 2 x USB-A 3.2 Gen 1 (one always on) | USB-C | HDMI 2.1/2.0 | Headphone/mic combo | RJ-45 ethernet | SD card reader
  • Backlit Keyboard with Numeric Keypad, English US; Windows 10 Pro (Free Upgrade to Windows 11 Pro); Up to 9 hours Battery, Rapid Charge; Optical Drive Not Included; Black


Processor: Latest 11th Generation Intel Core i7-11800H Processor (2.30 GHz, up to 4.60 GHz with Turbo Boost, 8 Cores, 16 Threads, 24 MB Cache)


Operating System: Windows 10 Pro, 64-bit, English


Video Card: NVIDIA RTX A2000 4GB

Display: 17.3" FHD (1920 x 1080) IPS, Non-touch, anti-glare, 300 nits

Memory: 32GB DDR4 3200MHz RAM

Hard Drive: 1TB PCIe SSD Gen 4

Optical Drive: Not Included

Battery: Up to 9 hours, 94Whr (MM18) / Rapid Charge technology supported on both 170W/230W power supply units

Wireless: Intel Wi-Fi 6E AX210 802.11AX (2 x 2) & Bluetooth 5.2;

Keyboard: Backlit Keyboard with Numeric Keypad, English US

Ports & Slots: 2 x USB-C Thunderbolt 4 | 2 x USB-A 3.2 Gen 1 (one always on) | USB-C | HDMI 2.1/2.0 | Headphone/mic combo | RJ-45 ethernet | SD card reader

Fingerprint reader: Yes

Camera: IR & 720p HD

Security: Discrete Trusted Platform Module (dTPM) 2.0 / Touch Fingerprint Reader / Self-healing BIOS / Webcam privacy shutter / Kensington lock slot

Color: Black

Dimensions & Weight: 16.3 x 11 x 1.5 inch / Weight: 8.09 lb

Warranty: 1 Year Depot or Carry-in

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.