Menu
Your Cart

Lenovo 00HW022 Battery for ThinkPad T460s/T470s

Lenovo 00HW022 Battery for ThinkPad T460s/T470s
Lenovo 00HW022 Battery for ThinkPad T460s/T470s
  • Price: TK 4,400/-
  • Stock: In Stock
  • Model: 00HW022 (compatible with 00HW023, 00HW036, SB10F4646x series)
TK 4,400/-
Ex Tax: TK 4,400/-

Key Features

    • Model: Lenovo 00HW022 (also compatible with 00HW023/00HW036/SB10F46460/46461/46474)
    • Battery Type: Lithium-Ion, 3-Cell (Samsung)
    • Voltage: 11.25 V
    • Capacity: 24 Wh (~2,090 mAh)
    • Color: Black
    • Compatibility: Front battery for ThinkPad T460s & T470s
    • Safety Protections: Overcharge, Overheat, Short-Circuit
    • Typical Runtime: ~5–5½ hours
    • Recharge Cycles: 300–500 cycles expected
    • Warranty: 6 Months
Specification
General Feature
BrandLenovo
Model00HW022 (compatible with 00HW023, 00HW036, SB10F4646x series)
Power
Battery TypeLi-Ion
Battery Capacity24 Wh (~2,090 mAh)
Battery CellsLi-Ion, 3-Cell
Physical Attributes
ColorBlack
Compatible WithThinkPad T460s, T470s (front battery)
Warranty Information
Warranty6 Months
Description

OEM Lenovo Power: 00HW022 Battery for ThinkPad T460s/T470s

The Lenovo 00HW022 is a genuine OEM lithium-ion battery designed for the ThinkPad T460s and T470s (front battery). It operates at 11.25 V and 24 Wh (≈ 2,090 mAh), providing approximately 5–5½ hours of runtime under typical usage.

Built with high-grade Samsung Li-ion cells, it boasts smart protection circuits against overcharge, overheating, and short circuits. Replaceable and precise, this battery matches OEM specifications and typically offers a 6 months warranty.




Why Buy from Dear IT Solution – Genuine Parts & Local Support

At Dear IT Solution, we stock only authentic OEM or equivalent Lenovo batteries like the 00HW022, thoroughly tested and backed by a 6-month local warranty. Enjoy secure packaging and fast delivery across Bangladesh, knowing you're getting a perfect fit replacement for your ThinkPad.

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};