Menu
Your Cart

Prolink 2000VA Offline UPS

Prolink 2000VA Offline UPS
Prolink 2000VA Offline UPS
  • Price: TK 14,000/-
  • Stock: In Stock
  • Model: Prolink 2000VA
  • MPN: PRO2000SFCU-4U
TK 14,000/-
Ex Tax: TK 14,000/-

Key Features

    • Model: 2000VA
    • Capacity: 1500VA
    • Input Voltage - 230VAC
    • Frequency: 50 or 60Hz ± 1Hz
    • Voltage Regulation: ± 10%
    Specification
    General Feature
    BrandProlink
    ModelProlink 2000VA
    Capacity700W
    Frequency50 or 60Hz ± 1Hz
    Output Features
    Type of WavePure Sine wave
    Technical Info
    BatteryNumber of Battery: 12 V/10 Ah x 2 Recharge Time (typical): 2-4 hours recover to 90% capacity
    Input Voltage230VAC
    Output Voltage± 10%
    Others
    AlarmLED Display: AC Mode – Green Lighting, Battery Mode – Yellow Flashing every 10 seconds, Overload – Red Flashing every second, Fault – Red Lighting
    Physical Attributes
    ColorBlack
    Dimensions320 x 130 x 182 (D x W x H)
    Weight10.6
    Warranty Information
    Warranty01 Year
    Description

    Prolink 2000VA Offline UPS

     Prolink 2000VA Offline UPS is a powerful and reliable power backup solution designed to safeguard your computers, servers, networking equipment, and sensitive electronics. With a robust 2000VA/1200W capacity, this UPS provides extended backup time and ensures stable performance even during sudden power outages, voltage drops, and surges.

    Equipped with Automatic Voltage Regulation (AVR), the Prolink 2000VA Offline UPS maintains a steady output voltage by correcting low and high voltage fluctuations without switching to battery power. This feature protects your equipment and extends the lifespan of your connected devices, making it a perfect choice for both office and home use.

    The microprocessor-controlled technology ensures reliable operation and fast switching to battery mode when needed. In the event of a blackout, the Prolink 2000VA provides sufficient time to save your important files and shut down your devices safely, preventing data loss and hardware damage.

    The UPS includes essential safety features like overload protection, short circuit protection, and battery deep discharge protection, ensuring complete security for your devices. With LED indicators and an audible alarm system, users are promptly alerted about UPS status and any unusual activity, making it easy to monitor and manage.

    Additionally, the cold start function allows the UPS to power up devices even without mains electricity, ensuring uninterrupted operation during emergencies. Its compact and durable design fits seamlessly into various workspaces while offering efficient energy usage to reduce power costs.

    The Prolink 2000VA Offline UPS is engineered to deliver high-quality performance and longer battery life, ensuring that your work, entertainment, or critical operations continue without interruption.


    Buy Prolink 2000VA Offline UPS from Dear IT Solution

    Purchase the Prolink 2000VA Offline UPS at the best price in Bangladesh from Dear IT Solution. We ensure best quality products insured in Bangladesh. Visit our store or order online today to keep your devices protected and your work uninterrupted

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