Skip to content

Thousands of satisfied happy customers and an amazing 4.8 Google rating.  For IT….  Joy Systems is the place to shop. Buy with confidence.

HP ZBook 15U G4, 15.6” FHD, Intel Core i7-7600U 2.8GHz, 8GB DDR4, 256GB NVMe SSD, AMD RADEON R7 M350 4GB, Refurbished

  • ManufacturerHP

Description

HP ZBook 15U G4 Laptop (REFURBISHED)

The 7th Gen Intel Core i7-7600U, Dual-Core processor with a speed of 2.8GHz, 8GB DDR4 Memory, 256GB NVMe SSD Storage, 15.6" Full HD, VGA, Webcam, AMD RADEON R7 M350 4GB, Windows 10 Pro 64-bit, Refurbished Grade A, 1 Year Warranty

 

Laptop Specifications

  • Condition: Refurbished, Grade A
  • Operating Systems: Windows 10 Professional 64-Bit
  • Platform: Laptop PC

Monitor Specifications

  • Screen Size: 15.6”
  • Display Type: Full HD Display
  • Touch Screen : No

Processor Specifications

  • Processor Brand: Intel
  • Processor Class: Core i7
  • Processor Type: Dual-Core
  • Processor Speed: 2.8GHz
  • Processor Number: 7600U

Memory Specifications

  • RAM Capacity: 8GB
  • RAM Type: DDR4

Storage Specifications

  • Capacity: 256GB
  • Type: NVMe SSD

Optical Drive Specifications

  • Optical Drive: None

Graphics Specifications

  • Graphics: AMD RADEON R7 M350 4GB

Audio Specifications

  • Audio Descriptions: Integrated Audio

Media Ports

  • USB Ports: 1x USB 3.1 Gen 1, 1x USB 3.0
  • Audio Out Jacks: 1x Audio Combo Jack
  • VGA Ports: 1
  • LAN Ports: 1x RJ-45
  • DisplayPort: 1
  • Docking Connector: 1

Mouse Specifications    

  • Mouse Type: Multi-touch touchpad

Keyboard Specifications

  • Keyboard Type: Standard Keyboard

Webcam

  • Integrated Webcam: Yes

Dimensions

  • Width: 15.09”
  • Height: 0.79”
  • Depth: 10.1”

Warranty

  • Warranty: 1 Year
Product form

HP ZBook 15U G4 Laptop (REFURBISHED) The 7th Gen Intel Core i7-7600U, Dual-Core processor with a speed of 2.8GHz, 8GB... Read more

SKU: J5-Z15UG4A03

$409.99

  • 15.6” FHD
  • Intel Core i7-7600U 2.8GHz
  • 8GB DDR4 Memory, 256GB NVMe SSD Storage
  • Win 10 Pro 64-bit
  • Refurbished Grade A, 1 Year Warranty

    All orders are processed within 1-2 business days.
    Orders are not shipped or delivered on weekends or holidays.
    We only ship to the continental US.

    Description

    HP ZBook 15U G4 Laptop (REFURBISHED)

    The 7th Gen Intel Core i7-7600U, Dual-Core processor with a speed of 2.8GHz, 8GB DDR4 Memory, 256GB NVMe SSD Storage, 15.6" Full HD, VGA, Webcam, AMD RADEON R7 M350 4GB, Windows 10 Pro 64-bit, Refurbished Grade A, 1 Year Warranty

     

    Laptop Specifications

    • Condition: Refurbished, Grade A
    • Operating Systems: Windows 10 Professional 64-Bit
    • Platform: Laptop PC

    Monitor Specifications

    • Screen Size: 15.6”
    • Display Type: Full HD Display
    • Touch Screen : No

    Processor Specifications

    • Processor Brand: Intel
    • Processor Class: Core i7
    • Processor Type: Dual-Core
    • Processor Speed: 2.8GHz
    • Processor Number: 7600U

    Memory Specifications

    • RAM Capacity: 8GB
    • RAM Type: DDR4

    Storage Specifications

    • Capacity: 256GB
    • Type: NVMe SSD

    Optical Drive Specifications

    • Optical Drive: None

    Graphics Specifications

    • Graphics: AMD RADEON R7 M350 4GB

    Audio Specifications

    • Audio Descriptions: Integrated Audio

    Media Ports

    • USB Ports: 1x USB 3.1 Gen 1, 1x USB 3.0
    • Audio Out Jacks: 1x Audio Combo Jack
    • VGA Ports: 1
    • LAN Ports: 1x RJ-45
    • DisplayPort: 1
    • Docking Connector: 1

    Mouse Specifications    

    • Mouse Type: Multi-touch touchpad

    Keyboard Specifications

    • Keyboard Type: Standard Keyboard

    Webcam

    • Integrated Webcam: Yes

    Dimensions

    • Width: 15.09”
    • Height: 0.79”
    • Depth: 10.1”

    Warranty

    • Warranty: 1 Year
    Questions & Answers loading...

    © 2026 Joy Systems PC

      Login

      Forgot your password?

      Don't have an account yet?
      Create account

      const fixAutofillAttributes = () => { // 이메일 필드 타겟팅 const emailInputs = document.querySelectorAll('input[type="email"], input[name*="email"]'); emailInputs.forEach(input => { if (!input.hasAttribute('autocomplete')) { input.setAttribute('autocomplete', 'email'); } }); // 비밀번호 필드 타겟팅 const passwordInputs = document.querySelectorAll('input[type="password"]'); passwordInputs.forEach(input => { if (!input.hasAttribute('autocomplete')) { // 로그인 폼인 경우 current-password, 가입 폼인 경우 new-password가 적절하나 // 범용적으로 current-password를 우선 적용하거나 폼 ID를 체크합니다. input.setAttribute('autocomplete', 'current-password'); } }); // 이름 필드 타겟팅 const nameInputs = document.querySelectorAll('input[name*="first_name"], input[name*="last_name"], input[name*="name"]:not([type="email"])'); nameInputs.forEach(input => { if (!input.hasAttribute('autocomplete')) { input.setAttribute('autocomplete', 'name'); } }); }; // 실행 fixAutofillAttributes(); // 동적 폼 로드 대비 지연 실행 setTimeout(fixAutofillAttributes, 2000); const cleanupAria = () => { // 불필요하거나 비어있는 ARIA 속성 제거 document.querySelectorAll('[aria-haspopup=""], [aria-controls=""]').forEach(el => { if (!el.getAttribute('aria-controls')) el.removeAttribute('aria-controls'); if (!el.getAttribute('aria-haspopup')) el.removeAttribute('aria-haspopup'); }); // 제품 카드 등에 논리적 그룹 역할 부여 document.querySelectorAll('.product-card, .grid__item, .card').forEach(card => { if (!card.hasAttribute('role')) card.setAttribute('role', 'group'); if (!card.hasAttribute('aria-label')) card.setAttribute('aria-label', 'Product item'); }); }; // 패치 실행 순서 fixFakeButtons(); fixCarousels(); cleanupAria(); })();