Menu
Your Cart

Original BIO3XL Laptop Battery for HP ProBook X360 11 G2

Original BIO3XL Laptop Battery for HP ProBook X360 11 G2
Original BIO3XL Laptop Battery for HP ProBook X360 11 G2
  • Price: TK 3,700/-
  • Stock: In Stock
  • Model: ProBook X360 11 G2
  • MPN: BIO3XL,HSTNN-IB7E
TK 3,700/-
Ex Tax: TK 3,700/-

Key Features

    • Brand: HP
    • Model: ProBook X360 11 G2
    • Battery Type: Li-ion Rechargeable
    • Voltage: 11.55V
    • Capacity: 48Wh
    • Compatible For: HP ProBook X360 11 G2 Series
    • Warranty: 6 Months
Specification
General Feature
BrandHP
ModelProBook X360 11 G2
Part NoBIO3XL, 916366-421, 916811-855, 917724-855, HSTNN-IB7E, HSTNN-LB7E.
Power
Battery TypeLi-ion
Battery Capacity48Wh
Battery Cells3 Cells
Physical Attributes
ColorBlack
Compatible WithProBook x360 11 G2 EE, Pavilion X360 13-U001NK,Pavilion X360 13-U027TU,Pavilion X360 13-U110ND,Pavilion X360 13-U176TU.
Warranty Information
Warranty6 Months
Description

Original BIO3XL Laptop Battery for HP ProBook X360 11 G2

The Original BIO3XL Battery for HP ProBook X360 11 G2 is designed to deliver reliable performance and long-lasting backup for your HP laptop. With high-quality lithium-ion cells, this battery ensures stable power, fast charging, and extended usage time, making it an excellent replacement for your worn-out or damaged battery.

Built with advanced safety features, the BIO3XL battery protects against overcharging, overheating, and short circuits, guaranteeing both safety and efficiency. It is an ideal solution for students, professionals, and home users who rely on their HP ProBook X360 laptops for daily tasks.

Compatible Models

  • HP ProBook X360 11 G2 EE

  • HP ProBook X360 11 G2 Education Edition

  • Other ProBook X360 11 Series supporting BIO3XL battery

Compatible Part Numbers

  • BIO3XL

  • 916366-421

  • 916811-855

  • 917724-855

  • HSTNN-IB7E

  • HSTNN-LB7E

This original HP BIO3XL battery is built to meet OEM standards, ensuring 100% compatibility with your ProBook X360 11 G2.

Maintenance Tips for Longer Battery Life

  1. Keep the battery charged between 20%–80% for longer lifespan.

  2. Avoid exposing the laptop to extreme heat or direct sunlight.

  3. Use the original HP charger for optimal charging cycles.

  4. Perform a full discharge and recharge cycle at least once a month.

  5. If storing for long periods, keep the battery at around 50% charge.

Why Buy from Dear IT Solution?

At Dear IT Solution, we offer the HP ProBook X360 11 G2 BIO3XL Original Battery at the best price in Bangladesh. We ensure the best quality product insured in Bangladesh, giving you confidence in durability and performance. Perfect as a replacement or spare, this battery helps you stay productive without interruptions.

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