Menu
Your Cart

HP FP06 FP09 450 g0 450 g1 470 g1 Laptop battery

HP  FP06 FP09 450 g0 450 g1 470 g1 Laptop battery
-8 %
HP FP06 FP09 450 g0 450 g1 470 g1 Laptop battery
  • Price: TK 2,400/-
  • special price: TK 2,200/-
  • Stock: In Stock
  • Model: FP06 FP09
TK 2,200/-
TK 2,400/-
Ex Tax: TK 2,200/-

Key Features

    • Brand: For HP
    • Model:FP06 FP09
    • Battery Type: Lithium-Ion
    • Voltage: 10.8V
    • Battery Capacity:48Wh 4400mAh
    • warranty:6 Months
Specification
General Feature
BrandFor HP
ModelFP06 FP09
Part No FP06, FP09, H6L26AA, H6L26UT, H6L27AA, HSTNN-IB4J, HSTNN-LB4K, HSTNN-UB4J, HSTNN-W92C, HSTNN-W93C, HSTNN-W94C, HSTNN-W95C, HSTNN-W96C, HSTNN-W97C, HSTNN-W98C, HSTNN-W99C, HSTNN-YB4J
Power
Battery TypeLithium-Ion
Battery Capacity48Wh 4400mAh
Battery Cells6 Cells
Physical Attributes
ColorBlack
Compatible WithHP ProBook Series: ProBook 440 Series: ProBook 440 G0, ProBook 440 G1 ProBook 445 Series: ProBook 445 G0, ProBook 445 G1 ProBook 450 Series: ProBook 450 G0, ProBook 450 G1 ProBook 455 Series: ProBook 455 G0, ProBook 455 G1 ProBook 470 Series: ProBook 470 G0, ProBook 470 G1
Warranty Information
Warranty6 Months
Description

Battery for HP – FP06 FP09 Extended Battery Life – at Dear IT

Enhance your HP ProBook's performance with the FP06 FP09 extended battery, designed for high capacity and longevity. Perfect for ProBook series laptops, this battery provides reliable power for your demanding tasks.

Key Features:

Battery Type: Lithium-Ion
Capacity: 48Wh 4400mAh
Voltage: 10.8V
Cells: 6 Cells
Product Part Numbers: FP06, FP09, H6L26AA, H6L26UT, H6L27AA, HSTNN-IB4J, HSTNN-LB4K, HSTNN-UB4J, HSTNN-W92C, HSTNN-W93C, HSTNN-W94C, HSTNN-W95C, HSTNN-W96C, HSTNN-W97C, HSTNN-W98C, HSTNN-W99C, HSTNN-YB4J
Product Condition: Brand New

Compatible With:

HP ProBook Series:
ProBook 440 Series: ProBook 440 G0, ProBook 440 G1
ProBook 445 Series: ProBook 445 G0, ProBook 445 G1
ProBook 450 Series: ProBook 450 G0, ProBook 450 G1
ProBook 455 Series: ProBook 455 G0, ProBook 455 G1
ProBook 470 Series: ProBook 470 G0, ProBook 470 G1



Why Choose Dear IT Solution?

Best Price in Bangladesh: Competitive pricing on high-capacity extended batteries.
Professional Support: Dedicated support to assist with your purchase and ensure optimal battery performance.
Upgrade your HP ProBook's battery life with the FP06 FP09 extended battery from Dear IT Solution and enjoy extended use with reliable power. Get it now at the best price in Bangladesh!x

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