Menu
Your Cart

ORICO 2.5 to 3.5 Inch Hard Drive Caddy (1125SS)

ORICO 2.5 to 3.5 Inch Hard Drive Caddy (1125SS)
-12 %
ORICO 2.5 to 3.5 Inch Hard Drive Caddy (1125SS)
  • Price: TK 650/-
  • special price: TK 575/-
  • Stock: In Stock
  • Model: 1125SS
TK 575/-
TK 650/-
Ex Tax: TK 575/-

Key Features

    • MPN: 1125ss-V1-BK
    • Model: 1125SS
    • Standard 2.5 to 3.5 inch HDD caddy
    • 2.5 inch hard drives supported
    • 6 Gbps SATA3.0 program
Description

ORICO 2.5 to 3.5 Inch Hard Drive Caddy (1125SS)
The ORICO 1125SS Hard Drive Caddy offers a seamless solution for integrating 2.5-inch HDDs or SSDs into a standard 3.5-inch drive bay, allowing you to upgrade your desktop, workstation, or server effortlessly. This durable and easy-to-use caddy ensures that your storage installation is quick, secure, and efficient.

Key Features
Universal Compatibility:
Designed to fit any 2.5-inch SATA HDD or SSD and transform it for use in a 3.5-inch bay. Compatible with most desktops, servers, and workstations.

Sturdy Construction:
Made from high-quality materials to provide enhanced durability and a secure fit for your hard drive.

Easy Installation:
Tool-free design for quick and hassle-free installation, ensuring your drive is operational within minutes.

Optimal Heat Dissipation:
Engineered with ventilation slots to maintain optimal airflow, preventing overheating and extending drive longevity.

SATA III Support:
Fully supports SATA III with backward compatibility for SATA II and SATA I, ensuring high-speed data transfer rates up to 6Gbps.

Enhanced Versatility:
Ideal for users who want to upgrade their desktop storage with a smaller form factor SSD for enhanced speed or increase their capacity with a secondary drive.

Why Choose ORICO 1125SS?
Space-Efficient Design: Perfect for compact systems needing additional storage.
High-Speed Performance: Ensures seamless data transfer for SSDs and HDDs.
Durability: Built to withstand regular use while securely holding your drive in place.
Cost-Effective Solution: A budget-friendly option for increasing system performance or storage capacity.
Applications
Upgrade your desktop with a high-performance SSD for faster boot and load times.
Add additional storage capacity to your system for media, backups, or applications.
Replace an outdated or damaged 3.5-inch drive with a modern 2.5-inch alternative.
Specifications
Model: ORICO 1125SS
Material: High-quality aluminum alloy and ABS plastic
Compatibility: 2.5-inch SATA SSD/HDD to 3.5-inch bay
Supported Interface: SATA I, II, III
Data Transfer Rate: Up to 6Gbps
Dimensions: Standard 3.5-inch size


Buying Suggestion at Dear IT Solution
Purchase the ORICO 1125SS Hard Drive Caddy from Dear IT Solution, your trusted store in Bangladesh. Known for offering high-quality tech products at competitive prices, Dear IT Solution ensures you get the best value with exceptional customer support. Upgrade your storage solution today with confidence!



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