Precision 7770 Mobile Workstation - 17.3

$13.48
$4,750.00
-100%
Title:  Default Title
Quantity

Description


Product Highlights:
  • Intel Chip
  • Windows 10 Pro
  • NVIDIA RTX A4500 with 16 GB
Product Condition: New and Factory Fresh
Limited Warranty3 YearAdditional Warranty Information3 Years Hardware Service with Onsite Service After Remote Diagnosis (Disti SNS)
Shipping Weight: 5 lbs.
Tech Specs

Manufacturer Part Number

DYN9V

Manufacturer Website Address

http://www.delltechnologies.com

Brand Name

Dell

Product Line

Precision

Product Series

7000

Product Model

7770

Product Name

Mobile Precision 7770

Marketing Information

Dell's most powerful 17" workstation

17" mobile workstation designed to be smaller and lighter than previous generations. Features Dell Optimizer for Precision, and ultra-scalable performance.

Features & Design | Operating System

Available with Windows 11, Windows 10 or Ubuntu.

Product Type

Mobile Workstation
Processor

Processor Manufacturer

Intel

Processor Type

Core i7

Processor Generation

12th Gen

Processor Model

i7-12850HX

Processor Core

Hexadeca-core (16 Core)

Processor Speed

2.10 GHz

Maximum Turbo Speed

4.80 GHz

vPro Technology

Yes
Chipset

Chipset Manufacturer

Intel
Memory

Total Installed System Memory

64 GB

Maximum Supported System Memory

128 GB

System Memory Technology

DDR5 SDRAM

System Memory Speed

4800 MHz

System Memory Form Factor

SoDIMM

Installed Slot Memory

64 GB

Installed Slot Memory Configuration

1 x 64GB

Number of Occupied Memory Slots

1
Storage

Drive Type

SSD

Total Solid State Drive Capacity

512 GB

SSD Form Factor

NVMe M.2 PCI Express

Display & Graphics

Screen Size

17.3"

Display Screen Technology

ComfortView Plus

Standard Refresh Rate

60 Hz

Screen Mode

Full HD

Screen Resolution

1920 x 1080

Touchscreen

No

Graphics Controller Manufacturer

NVIDIA

Graphics Controller Model

RTX A4500

Graphics Memory Capacity

16 GB

Graphics Memory Technology

GDDR6

Graphics Memory Accessibility

Dedicated
Network & Communication

Wireless LAN

Yes

Wireless LAN Standard

IEEE 802.11ax

Wimax

No

Ethernet Technology

Gigabit Ethernet

Bluetooth

Yes

WWAN Supported

No
Built-in Devices

Front Camera/Webcam

Yes

Infrared Camera

Yes
Interfaces/Ports

HDMI

Yes

Total Number of USB Ports

3

Number of USB 3.2 Gen 1 Type-A Ports

2

Number of USB 3.2 Gen 2 Type-C Ports

1

Network (RJ-45)

Yes

Number of Thunderbolt 4 Ports

2
Operating System

Operating System Platform

Windows

Operating System

Windows 10 Pro

Upgradable Operating System

Windows 11 Pro

Operating System Language

English/French/Spanish
Input Devices

Keyboard Backlight

Yes

Keyboard Localization

English (US)
Battery Information

Number of Cells

6-cell
Power Description

Maximum Power Supply Wattage

240 W
Physical Characteristics

Product Color

Aluminum Titan Gray

Height

1.13"

Width

15.7"

Depth

10.4"

Weight (Approximate)

6.73 lb
Miscellaneous

Package Contents

  • Mobile Precision 7770
  • Lithium Ion Battery
  • AC Adapter
  • Quick Setup Guide for Mobile Precision 7770
  • Safety and Regulatory Documents English,French,Dutch
  • E5 Power cord

Features

Anti-glare Screen

Energy Star

Yes

Environmentally Friendly

Yes

Environmental Certification

EPEAT Gold
Warranty

Limited Warranty

3 Year

Additional Warranty Information

3 Years Hardware Service with Onsite Service After Remote Diagnosis (Disti SNS)

About this item

  • Dell 17.3" Mobile Precision 7770 Laptop - NVIDIA RTX A5500 16GB GDDR6 - Dell 3 Years ONSITE Warranty
  • Intel Core 12th Generation i7-12850HX Processor (16 Core, Up to 4.80GHz, 25MB Cache, 55W) - 6-Cell, 93 WHr Lithium Ion Battery
  • 17.3 inch FHD (1920 x 1080) Wide View Angle Anti-Glare 60Hz 500- nits 99% DCIP3 Non-Touch Display - Intel Wi-Fi 6E (6GHz) AX211 2x2 + Bluetooth
  • 64GB (1X64GB) 4800MHz DDR5 - 512GB PCIe M.2 NVMe Gen 4 Class 40 Solid State Drive - Windows 11 Pro - US English Single Pointing Backlit Keyboard
  • Single Pointing Palmrest with SmartCard Reader -FHD Camera with Shutter and Microphone, No Express Sign-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.