Menu
Your Cart

Western Digital 2TB My Passport Portable HDD

Western Digital 2TB My Passport Portable HDD
Western Digital 2TB My Passport Portable HDD
  • Price: TK 8,500/-
  • Stock: In Stock
  • Model: 2TB My Passport
TK 8,500/-
Ex Tax: TK 8,500/-

Key Features

    • Model: Western Digital 2TB My Passport
    • Capacity: 2TB
    • Micro-B Connector
    • USB 3.0 Gen 1/ USB 2.0 compatible
    • 256-bit AES hardware encryption
    Specification
    General Feature
    TypePortable
    Capacity2TB
    size107.2mm x 75mm x 19.15mm
    InterfaceMicro-B Connector USB 3.0 Gen 1/ USB 2.0 compatible
    Others
    • Slim durable design to help take your important files with you
    • Back up smarter with included device management software2 with defense against ransomware
    • Password protection + 256-bit AES hardware encryption
    Warranty Information
    Warranty03 Year
    Description

    Western Digital 2TB My Passport Portable HDD

    The Western Digital 2TB My Passport Portable HDD is a powerful and compact storage solution designed for individuals who need extensive space for their files, whether for work, study, or leisure. With an impressive 2TB capacity, this portable hard drive provides ample storage for photos, videos, music, documents, and more, making it ideal for anyone looking for reliable and portable data storage.

    Equipped with USB 3.0 connectivity, the Western Digital 2TB My Passport Portable HDD offers fast and efficient data transfers while ensuring backward compatibility with USB 2.0 devices. Its slim and lightweight design makes it easy to carry wherever you go, whether you’re traveling, working remotely, or studying at a café.

    The Western Digital 2TB My Passport Portable HDD comes preloaded with WD Backup software, allowing you to set up automatic backups to protect your important files. It also features password protection and 256-bit AES hardware encryption, ensuring your sensitive data remains safe from unauthorized access.

    Durability and reliability are core features of the Western Digital 2TB My Passport Portable HDD. Engineered with WD’s trusted quality, it is designed to withstand everyday wear and tear, providing consistent and dependable performance. Whether you’re storing personal memories or essential work files, this hard drive ensures your data stays secure and easily accessible.

    Buying Suggestions from Dear IT Solution

    For customers in Bangladesh, the Western Digital 2TB My Passport Portable HDD is available at Dear IT Solution, your trusted source for premium IT products.

    At Dear IT Solution, we offer the Western Digital 2TB My Passport Portable HDD at a competitive price, ensuring excellent value for your investment. With our easy-to-use online store, you can quickly find this product, place your order, and have it delivered right to your doorstep in no time.

    When you shop at Dear IT Solution, you can trust that you’re receiving a genuine, high-performance product. If you need assistance with the Western Digital 2TB My Passport Portable HDD  or any other IT product, our expert team is here to guide you in finding the perfect storage solution for your requirements.


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