Menu
Your Cart

MSI PRO H510M-B 10th Gen Micro-ATX Motherboard

MSI PRO H510M-B 10th Gen Micro-ATX Motherboard
MSI PRO H510M-B 10th Gen Micro-ATX Motherboard
MSI PRO H510M-B 10th Gen Micro-ATX Motherboard
MSI PRO H510M-B 10th Gen Micro-ATX Motherboard
-11 %
MSI PRO H510M-B 10th Gen Micro-ATX Motherboard
MSI PRO H510M-B 10th Gen Micro-ATX Motherboard
MSI PRO H510M-B 10th Gen Micro-ATX Motherboard
MSI PRO H510M-B 10th Gen Micro-ATX Motherboard
MSI PRO H510M-B 10th Gen Micro-ATX Motherboard
  • Price: TK 9,440/-
  • special price: TK 8,400/-
  • Stock: In Stock
  • Model: PRO H510M-B
TK 8,400/-
TK 9,440/-
Ex Tax: TK 8,400/-

Key Features

    • Model: PRO H510M-B
    • Supported CPU: 10th Gen Intel processors for LGA 1200
    • Supported RAM: 2x DDR4, Max 64GB up to 2933MHz
    • Graphics Output: 1x HDMI, 1x VGA
    • Features: 1x M.2, Realtek 8111H Gigabit LAN
    Specification
    General Feature
    BrandMSI
    ModelPRO H510M-B
    OthersSpecial Features: 4x EZ Debug LED
    Processor
    ChipsetINTEL H470
    Memory Specifications
    Number of Memory Slots2
    Memory TypeDDR4
    Storage
    Storage Type1x M.2 M.2_1 Source (From Chipset) supports up to PCIe 3.0 x4 / SATA mode, supports 2280/2260/2242 devices 4x SATA 6G
    Graphics
    Graphics Model1x HDMI Support HDMI 1.4, maximum resolution of 4K 30Hz 1x VGA Support VGA, maximum resolution of 2048x1536 50Hz, 1920x1200 60Hz
    Network & Connection
    LanRealtek 8111H Gigabit LAN
    Warranty Information
    Warranty3 years Manufacturing Warranty
    Description

    MSI PRO H510M-B 10th Gen Micro-ATX Motherboard

    The MSI PRO H510M-B is a reliable Micro-ATX motherboard designed for 10th Gen Intel processors, offering stability and efficiency for both home and office use. Built with high-quality components, it ensures smooth performance and long-lasting durability.

    Equipped with DDR4 memory support, the motherboard provides enhanced speed and multitasking capabilities. Its PCIe slots and M.2 storage support allow users to expand their system effortlessly. The high-speed USB ports and integrated audio features make it an ideal choice for seamless connectivity and immersive sound experience.

    Buying Suggestions from Dear IT Solution

    At Dear IT Solution, the MSI PRO H510M-B Motherboard is available at the best price in Bangladesh, ensuring top-quality performance for your PC build.

    As a trusted supplier of computer components, we provide best quality product insured in Bangladesh. Our team is ready to assist with compatibility checks and installation support.

    Order the MSI PRO H510M-B Motherboard from Dear IT Solution today and build a powerful, reliable,

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