Menu
Your Cart

LAPTOP BATTERY ORIGINAL HP 820 G1 / SB03XL

LAPTOP BATTERY ORIGINAL HP 820 G1 / SB03XL
-5 %
LAPTOP BATTERY ORIGINAL HP 820 G1 / SB03XL
  • Price: TK 6,200/-
  • special price: TK 5,860/-
  • Stock: In Stock
  • Model: SB03XL / SB03046XL / HSTNN‑IB4T / HSTNN‑LB4T / 716726‑1C1
TK 5,860/-
TK 6,200/-
Ex Tax: TK 5,860/-

Key Features

    • Model: HP SB03XL / SB03046XL / HSTNN‑IB4T / HSTNN‑LB4T / 716726‑1C1
    • Battery Type: Lithium‑Ion (3‑Cell)
    • Voltage: 11.1 V
    • Capacity: 46 Wh (~4,140 mAh)
    • Color: Black
    • Compatibility: EliteBook 720 G1/G2, 725 G1/G2, 820 G1/G2 series
    • Warranty: 6 Months
Specification
General Feature
BrandHP
ModelSB03XL / SB03046XL / HSTNN‑IB4T / HSTNN‑LB4T / 716726‑1C1
Power
Battery Type Li‑Ion
Battery Capacity46 Wh (~4,140 mAh)
Battery Cells3‑Cell
Physical Attributes
ColorBlack
Compatible WithHP EliteBook 720 G1/G2, 725 G1/G2, 820 G1/G2 series
Warranty Information
Warranty6 Months
Description

Reliable OEM Power: HP SB03XL Battery for EliteBook 720/725/820 G1 & G2

The HP SB03XL (also known as SB03046XL, HSTNN‑IB4T, HSTNN‑LB4T, 716726‑1C1) is a genuine or OEM lithium-ion replacement battery designed for HP EliteBook 720 G1/G2, 725 G1/G2, and 820 G1/G2 notebooks. It delivers a stable 11.1 V output with a 46 Wh capacity (~4,140 mAh, 3‑cell), offering an estimated 2–4 hours of runtime under regular usage.

Built with high-quality Samsung cells, it includes smart protections against overcharging, overheating, and short circuits—meeting OEM standards and coming with a 6-month warranty.




Why Buy from Dear IT Solution – Authenticity, Warranty & Local Support

At Dear IT Solution, we offer genuine HP SB03XL batteries, all tested for safety and performance. Each unit comes with a 6-month replacement warranty, secure packaging, and fast nationwide delivery in Bangladesh. Trust us for reliable battery replacements that restore your EliteBook’s mobility and productivity.

Review

Write a review

Note: HTML is not translated!
Bad Good
Critial Path: Hello world!
Hello world!
/** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};