Download Center | CyberPower (2024)

'; newHtml += '

' + $('#HdnSoftware').val() + '

'; newHtml += '

' + $('#HdnPlatform').val() + '

'; newHtml += '

' + $('#HdnMoreInformation').val() + '

'; } } else { newHtml += '

'; newHtml += '

'; newHtml += '

' + $('#HdnFileName').val() + '

'; newHtml += '

'; newHtml += '

' + $('#HdnLanguage').val() + '

'; newHtml += '

' + $('#HdnVersion').val() + '

'; newHtml += '

' + $('#HdnFileSize').val() + '

'; newHtml += '

' + $('#HdnOS').val() + '

'; newHtml += '

' + $('#HdnFileDownload').val() + '

'; newHtml += '

' + $('#HdnNote').val() + '

'; } break; } newHtml += '

'; if (vfilter.displayFormat == 'Form 3(Software & Utility)' && _isHWModelName) { if (_downloadSoftwarePack != null && _downloadSoftwarePack.length > 0) { //判斷是否含有"PowerPanel Business" 或 "PowerPanel Personal" 字串 $.each(_downloadSoftwarePack, function (iSoftware, vSoftware) { if ((vSoftware.pmtSeries.match("PowerPanel Business") || vSoftware.pmtSeries.match("PowerPanel Personal")) && 'True' == "True") { var modelName = "PowerPanel Cloud"; var seriesNameMulti = GetMultiListValue('Software', "PowerPanel Cloud"); var platformMulti = GetMultiListValue('Platform', "Cloud-based Platform"); newHtml += '

'; newHtml += '

' + seriesNameMulti + '

'; newHtml += '

' + platformMulti + '

'; newHtml += '

'; newHtml += '' + $('#HdnLearnMore').val() + ''; newHtml += '' + $('#HdnLoginPortal').val() + ''; newHtml += '

'; newHtml += '

'; return false; } }); $.each(_downloadSoftwarePack, function (iSoftware, vSoftware) { var modelName = (vSoftware.DisplayModelName != "") ? vSoftware.DisplayModelName.replace(/[\s]+/g, "_").toLowerCase() : ""; var seriesNameMulti = GetMultiListValue('Software', vSoftware.pmtSeries); newHtml += '

'; newHtml += '

' + seriesNameMulti + '

'; newHtml += '

' + vSoftware.PlatForm + '

'; newHtml += '

'; newHtml += '' + $('#HdnLearnMore').val() + ''; newHtml += '' + $('#HdnGotoDownload').val() + ''; newHtml += '

'; newHtml += '

'; }); } } $.each(_searchResult, function (iResult, vResult) { if (vResult.Type == vfilter.type) { if (vfilter.displayFormat != 'Form 3(Software & Utility)' || !_isHWModelName) { newHtml += '

'; newHtml += '

' + vResult.Name.replace(/\//g, '/ ') + '

'; if (vfilter.displayFormat == 'Form 3(Software & Utility)' && !_isHWModelName) { newHtml += '

'; if (vResult.Description != '') { newHtml += ''; newHtml += '

' + vResult.Description + '

'; } newHtml += '

'; } //Language if (vfilter.displayFormat == 'Form 1(File Name/Language/Download)' || (vfilter.displayFormat == 'Form 3(Software & Utility)' && !_isHWModelName)) { var langStr = ''; var langArr = vResult.Language.split(';'); $.each(langArr, function () { var lang = GetMultiListValue('Language', this); if (langStr) langStr += ', '; langStr += lang; }); newHtml += '

' + langStr + '

'; } //Version if (vfilter.displayFormat == 'Form 2(File Name/Version/Download)' || (vfilter.displayFormat == 'Form 3(Software & Utility)' && !_isHWModelName)) { newHtml += '

' + vResult.Version + '

'; } if (vfilter.displayFormat == 'Form 3(Software & Utility)' && !_isHWModelName) { //FileSize newHtml += '

' + vResult.FileSize + '

'; //Supported Operating System var osStr = ''; var osArr = vResult.OperatingSystem.split(';'); $.each(osArr, function () { var os = GetMultiListValue('Supported Operating System', this); if (osStr) osStr += ', '; osStr += os; }); newHtml += '

' + osStr + '

'; } //File Download if (_DownloadFormat == "Survey" && vResult.Type == 'Software & Utility') { newHtml += '

' + $('#HdnDownload').val() + '

'; } else { newHtml += '

'; } if (vfilter.displayFormat == 'Form 3(Software & Utility)' && !_isHWModelName) { newHtml += '

'; var objItem = new Object(); objItem.FileId = vResult.DocumentId; objItem.FileType = 'Download Center'; objItem.FileSubType = 'FileReleaseNote'; objItem.Note = ''; var json = JSON.stringify(objItem); $.ajax({ url: '/global/en/File/DefaultFileItem', type: 'GET', async: false, data: { fileItemJson: json }, contentType: "application/json; charset=utf-8", dataType: 'json', success: function (result) { if (result.length != 0) { newHtml += '' + releaseNoteStr + ''; } } }); newHtml += ''; newHtml += '' + $('#HdnMD5').val() + ''; newHtml += ''; newHtml += '

'; newHtml += ''; newHtml += ''; newHtml += '

'; newHtml += '

'; } newHtml += '

'; } } }); newHtml += '

'; } }); $('#skuContainer .softwareDlForm').each(function () { $(this).remove(); }); $('#skuContainerFile').append(newHtml); $('.downloadContent').addClass('active'); //todo jquery載入順序 $('#skuContainer .softwareDlForm a.copyBoxOpen').on('click', function (event) { event.preventDefault(); event.stopPropagation(); if (!$(this).siblings('.copyBox').hasClass('active')) { $(this).siblings('.copyBox').addClass('active').show(); } }); $('.softwareDlTab ul li').each(function () { var $this = $(this), $a = $this.find('a'), href = $a.attr('href'), $link = $(href); $this.on('click', function (e) { e.preventDefault(); $('.softwareDlTab ul li').removeClass('active'); $('.softwareDlForm').removeClass('active').hide(); $this.addClass('active'); $link.addClass('active').show(); }); }).eq(0).trigger('click'); $('.copyBox button').on('click', function () { var copyBox = $(this).parent().find('input'); copyBox.select(); document.execCommand('copy'); }); } function downloadFile(documentId, fileSubType) { location.href = '/global/en/File/GetFileSampleByType' + '?fileId=' + documentId + '&fileType=' + 'Download Center' + '&fileSubType=' + fileSubType; } function VideoPopUp(item) { //2016-3-3 Eric 點選後自動撥放 var src = $(item).attr('src'); if (src.indexOf('?autoplay=1') == -1) src += '?autoplay=1'; var div = $('#youtubePopup'); div.find('iframe').attr('src', src); div.fadeIn(); } function SurveyFromPopUp(model, id) { documentId = id; $('#modelNametitle').html(model); surveyModeltitle = model; //$('#surveyFromPopupInfo').fadeIn(); $('#SurveyCompanyId').val(''); $('#SurveyDomainId').val(''); $('#SurveyCountryId').val(''); $('#SurveyCityId').val(''); $('#SurveyStreetId').val(''); $('#SurveyZipCodeId').val(''); $('#SurveyNameId').val(''); $('#SurveyEmailId').val(''); $('#SurveyModelId').val(''); $('#modelNametitle').val(''); $('#SurveyAcceptanceId').prop("checked", false); CountrySelectorList(); } function AddSurveyItem() { var inputObj = JSON.stringify(Data()); $.ajax({ url: "/global/en/Ajax/AddSurveyItem", type: "POST", dataType: "json", data: { InputObj: inputObj }, success: function (result) { if (result.Flag) { $('#surveySuccessuspopup').fadeIn(); //$('#surveyFromPopupInfo').fadeOut(); window.location = '/global/en/File/GetFileSampleByType' + '?fileId=' + documentId + '&fileType=' + 'Download Center' + '&fileSubType=' + 'FileOriginal'; } else { $('#surveyFailedpopup').fadeIn(); } } }); return false; } function CloseSurveyPopup() { $('#surveypopup').fadeOut('fast').removeClass('PopupOn'); $('#surveySuccessuspopup').fadeOut('fast').removeClass('PopupOn'); $('#surveyFailedpopup').fadeOut('fast').removeClass('PopupOn'); } function CheckTypeItem() { var company = $('#SurveyCompanyId').val(); var name = $('#SurveyNameId').val(); var email = $('#SurveyEmailId').val(); var model = $('#SurveyModelId').val(); var acceptance = $('input[id="SurveyAcceptanceId"]:checked').val(); var obj = new Object(); var msg = ''; var checkPopUpTag = ''; obj.Domain = 'global'; checkPopUpTag += $('#HdnSurveyCheckPopUpTitle').val() + ''; if (company == '') { msg += $('#CompanyId').text() + " \n"; checkPopUpTag += $('#CompanyId').text() + ''; } if (name == '') { msg += $('#NameId').text() + " \n"; checkPopUpTag += $('#NameId').text() + ''; } var regexemail = /^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z]+$/; if (email == '' || !(regexemail.test(email))) { msg += $('#EmailId').text() + " \n"; checkPopUpTag += $('#EmailId').text() + ''; } if (model == '') { msg += $('#ModelId').text() + " \n"; checkPopUpTag += $('#ModelId').text() + ''; } if (acceptance == undefined) { msg += $('#AcceptanceId').text() + " \n"; checkPopUpTag += $('#AcceptanceId').text(); } if (msg != '') { checkPopUpTag += '

' + $('#Button_OK').val() + ''; $('#surveyFailedpopups').html(checkPopUpTag); $('#surveypopup').fadeIn(); return false; } return true; } function CountryIpDetection() { $.getJSON("https://ipv4.jsonip.com/?format=json", function (data) { var ip = data.ip; $.ajax({ url: "/global/en/Ajax/SurveyIpDetection", type: "POST", dataType: "json", data: { ip: ip }, success: function (result) { CountryList(result); ipDetection = result.CountryCode; } }); }); } function CountryList(elem) { var str = ''; $.ajax({ url: "/global/en/Ajax/SurveyCountryList", type: "POST", dataType: "json", //async: false, data: { domain: 'global' }, success: function (result) { str += "

"; for (var i in result) { if (result[i].CountryCode == elem.CountryCode) { str += "

"; } else { str += "

"; } }; $('#SurveyCountryId').html(str); countryList = result; } }); } function CountrySelectorList() { var str = ''; str += "

"; for (var i in countryList) { if (countryList[i].CountryCode == ipDetection) { str += "

"; } else { str += "

"; } }; $('#SurveyCountryId').html(str); } function Data() { var obj = new Object(); obj.Company = $('#SurveyCompanyId').val(); obj.Domain = 'global'; obj.Country = ($('#SurveyCountryId :selected').text() == '-Select-' ? "" : $('#SurveyCountryId :selected').text()); obj.CountryCode = $('#SurveyCountryId').val(); obj.City = $('#SurveyCityId').val(); obj.Street = $('#SurveyStreetId').val(); obj.ZipCode = $('#SurveyZipCodeId').val(); obj.Name = $('#SurveyNameId').val(); obj.Email = $('#SurveyEmailId').val(); obj.Model = $('#SurveyModelId').val(); obj.SurveyType = 'Software Download'; obj.SurveyName = surveyModeltitle; return obj; } function GetMultiLangSystems() { var systems = ["Download Center", "Product Category Setting"]; return systems; } function AutoComplete(str) { if (str != '' && $('.productSearch').hasClass('focus')) { $('#searchMatch').html(''); var filter = $.ui.autocomplete.escapeRegex(str.toLowerCase()); var res = []; var resMax = 5; var searchMatchHtml = ''; var startsWithMatcher = new RegExp("^" + filter, "i") , startsWith = $.grep(_keywordArr, function (item) { return startsWithMatcher.test(item.toLowerCase()); }) , containsMatcher = new RegExp(filter, "i") , contains = $.grep(_keywordArr, function (item) { return $.inArray(item, startsWith) < 0 && containsMatcher.test(item.toLowerCase()); }); while (res.length < resMax && (startsWith.length > 0 || contains.length > 0)) { if (startsWith.length > 0) { res.push(startsWith.shift()); } else if (contains.length > 0) { res.push(contains.shift()); } } if (res.length == 0) { res.push($('#HdnNoresult').val()); noResultFlag = true; searchMatchHtml += '

' + $('#HdnNoresult').val() + '

'; } else { noResultFlag = false; searchMatchHtml += '

    '; $.each(res, function (index, value) { searchMatchHtml += '
  • ' + value + '
  • '; }) searchMatchHtml += '

'; } $('#searchMatch').html(searchMatchHtml); ProductSearch(); $('#searchMatch').show(); } } function ProductSearch() { var productSearchIndex = 0; var $productSearch = $('.productSearch'), $productSearchForm = $productSearch.find('form'), $productSearchInput = $productSearchForm.find('input'), $productSearchClearTxt = $productSearchForm.find('.clearTxt'), $productSearchMatch = $productSearch.find('.searchMatch'), $productSearchMatchLi = $productSearchMatch.find('ul li'), $productSearchMatchA = $productSearchMatchLi.find('a'); $productSearchForm.on('click', function (e) { e.preventDefault(); }); $productSearchMatch.on('click', function (e) { e.preventDefault(); }); $productSearchInput.on('keydown', function (event) { if ($productSearchMatch.hasClass('active')) { if (event.which == 40) { event.preventDefault(); if (!noResultFlag) { if (productSearchIndex >= $productSearchMatchLi.length) { productSearchIndex = 0; } productSearchIndex += 1; $productSearchMatchA.removeClass('active'); $productSearchMatchLi.eq(productSearchIndex - 1).find('a').addClass('active'); $productSearchInput.val($productSearchMatchLi.eq(productSearchIndex - 1).text()); } } if (event.which == 9) { event.preventDefault(); if (!noResultFlag) { if (productSearchIndex >= $productSearchMatchLi.length) { productSearchIndex = 0; } productSearchIndex += 1; $productSearchMatchA.removeClass('active'); $productSearchMatchLi.eq(productSearchIndex - 1).find('a').addClass('active'); $productSearchInput.val($productSearchMatchLi.eq(productSearchIndex - 1).text()); } } if (event.which == 38) { event.preventDefault(); if (!noResultFlag) { if (productSearchIndex == 0) { productSearchIndex = $productSearchMatchLi.length; } productSearchIndex -= 1; $productSearchMatchA.removeClass('active'); $productSearchMatchLi.eq(productSearchIndex).find('a').addClass('active'); $productSearchInput.val($productSearchMatchLi.eq(productSearchIndex).text()); } } } }); $productSearchMatchA.on('mouseover', function () { $productSearchMatchLi.siblings().find('a').removeClass('active'); productSearchIndex = 0; }); $productSearchMatchA.on('click', function () { var $this = $(this); $productSearchMatchLi.siblings().find('a').removeClass('active'); productSearchIndex = 0; $productSearchInput.val($this.text()); $('.productSearchBtn').trigger('click'); }); $productSearchClearTxt.on('click', function (e) { e.preventDefault(); $productSearchInput.val('').focus(); $productSearchClearTxt.removeClass('active'); $productSearchMatch.slideUp().removeClass('active'); $productSearchMatchA.removeClass('active'); productSearchIndex = 0; }); } function GetModelVideos() { var filterArr = []; var videoSearchResult = []; filterArr.push("Type" + "|" + "Video Tutorials"); var keyword = $.trim($('#TxtKeyword').val()); if (keyword) filterArr.push('Keyword|' + keyword); $.ajax({ url: '/global/en/Ajax/ReadChannelMasterList', type: 'post', datatype: 'json', async: false, data: { jsonStr: JSON.stringify(filterArr), domain: 'global' }, success: function (result) { //2016-7-6 Eric 新增Category Filter if (result.NewMasterItemViews.length > 0) { var videoTabStr = ''; var videoFormStr = ''; $.each(result.NewMasterItemViews, function () { //加入全域變數 videoSearchResult.push(this); }); videoTabStr += '

    '; $.each(result.VideoCategoryList, function (iCategory, vCategory) { var videoName = vCategory.VideoCategoryMultiName.replace(/\'/g, ""); var videocategory = vCategory.VideoCategoryName.replace(/\'/g, ""); videoTabStr += '
  • '; videoTabStr += '' + videoName + '' videoTabStr += '
  • '; videoFormStr += '

    '; videoFormStr += '

    '; var VideoList = []; var videoNameList = []; $.each(videoSearchResult, function () { var item = $(this.NewMaster); //Category Filter if (item.attr('VideoCategory') == videoName && item.attr('ModelName').toUpperCase().includes(keyword.toUpperCase())) { if (videoNameList.indexOf(item.attr('Name')) == -1) { VideoList.push(this); videoNameList.push(item.attr('Name')); } else { $.each(VideoList, function (index, value) { if (value.NewMaster.Name == item.attr('Name') && value.NewMaster.ReleaseDate < item.attr('ReleaseDate')) { VideoList.splice(index, 1); VideoList.push(this); return false; } }); } } }); if (VideoList.length > 0) { //排序 VideoList.sort(function (a, b) { return (a.NewMaster.ReleaseDate < b.NewMaster.ReleaseDate) ? 1 : ((b.NewMaster.ReleaseDate < a.NewMaster.ReleaseDate) ? -1 : 0); }); $.each(VideoList, function (iVideo, vVideo) { var videoUrl = vVideo.NewMaster.VideoUrl; if (videoUrl) { var videoUrlSplit = videoUrl.split('/'); var videoImageUrl = "https://img.youtube.com/vi/" + videoUrlSplit[4] + "/hqdefault.jpg"; if (iVideo % 4 == 0 && iVideo / 4 != 0) { videoFormStr += '

    '; videoFormStr += '

    '; videoFormStr += '

    '; }); videoTabStr += '

'; $('#videoTab').html(videoTabStr); $('#skuContainerVideo').append(videoFormStr); $('#skuContainerVideo').removeAttr('style') } } }); $('.videoTab ul li').each(function () { var $this = $(this), $a = $this.find('a'), href = $a.attr('href'), $link = $(href); $this.on('click', function (e) { e.preventDefault(); $('.videoTab ul li').removeClass('active'); $('.videoForm').removeClass('active').hide(); $this.addClass('active'); $link.addClass('active').show(); }); }).eq(0).trigger('click'); } function newVideoPopUp(e, item) { e.preventDefault(); var $this = $(item), src = $this.attr('src'); popupScrollTop = $(window).scrollTop(); if (src.indexOf('?autoplay=1') == -1) src += '?autoplay=1'; var div = $('#youtubePopup'); div.find('iframe').attr('src', src); div.fadeIn().addClass('PopupOn'); $('html, body').addClass('popupOn'); $('body').scrollTop(popupScrollTop); } function MouseMoveEvent() { var isFocus = false; var productSearchIndex = 0, $productSearch = $('.productSearch'), $productSearchForm = $productSearch.find('form'), $productSearchInput = $productSearchForm.find('input'), $productSearchClearTxt = $productSearchForm.find('.clearTxt'), $productSearchMatch = $productSearch.find('.searchMatch'), $productSearchMatchLi = $productSearchMatch.find('ul li'), $productSearchMatchA = $productSearchMatchLi.find('a'); $('#TxtKeyword').mousedown(function (e) { isFocus = true; }); $('#TxtKeyword').mouseup(function (e) { isFocus = false; }); $(document).click(function (e) { if (!isFocus) { $productSearch.removeClass('focus'); $('html, body').removeClass('popupOn'); $productSearchMatch.hide().removeClass('active'); $productSearchMatchA.removeClass('active'); productSearchIndex = 0; } isFocus = false; }); }

Set a New Password

Confirm

Download Center | CyberPower (2024)

FAQs

What is CyberPower used for? ›

CyberPower designs and manufactures a wide range of innovative power products, including Mobile Inverters, Surge Protectors, PDUs & Power Management systems, Mobile Chargers, and PV Inverters, all engineered to further enhance our technology giving us the ability to design continuously high quality UPS products.

What is the free UPS monitoring software for Windows 11? ›

PowerPanel® Personal is FREE software that features a user-friendly interface for controlling and monitoring any CyberPower UPS system through the USB or serial port. PowerPanel Personal can send email notifications when power events occur to keep you informed of power conditions at all times.

How do I find out what CyberpowerPC I have? ›

The product model number can be found on the backside of the product on a white label or stamped into the product housing. For questions or assistance, please call toll-free at 1-877-297-6937 (option 1) to speak to a Technical Support representative.

What does CyberPower USB do? ›

CyberPower USB Hubs charge and power multiple USB 2.0/1.1 devices from your laptop or computer while providing Hi-Speed connectivity. Features vary by model and include compact design, swift data transfer, plug-and-play installation, and LED indicators. Select models have a charging port for Apple iPods and iPhones.

How long does a CyberPower last? ›

Typically the battery lifetime is between one to three years depending on environment conditions.

How do I turn on CyberPower on my computer? ›

Plug the included power cord into the back of your computer, then plug it into the AC wall outlet. You need to make sure the switch on the PSU is in the ON position and then press the power button at the top/front of the PC to power your computer on.

Can UPS power a desktop? ›

Can UPS Power a Desktop? Yes, UPS (Uninterruptible Power Supply) systems can provide backup power for desktops computers and other electronic devices in case of power outages or fluctuations. A UPS typically consists of a battery, an inverter, and a charger.

How long does it take for CyberPower to build your PC? ›

Production Time
GROUND3 DAY AIR2ND DAY AIR
6-12 Business Days6 Business Days5 Business Days

What kind of PC is CyberPower? ›

CyberPowerPC is an American website and retailer of gaming products. specializing of building and selling a wide range of (custom-built) gaming computers.

Do CyberPower PCs come with antivirus? ›

CyberPowerPC computers can ship with McAfee Security Center or McAfee LiveSafe, either as a 30-day trial version or subscriptions of up to 36 months.

What is a CyberPower box for? ›

Product Overview. The CyberPower SX950U uninterruptible power supply (UPS) system provides surge protection for lightning-induced surges and other power events that can damage electronic equipment.

What does a CyberPower CyberShield do? ›

CyberShield UPSs are designed to provide a local power solution for cable telephony, wireless local loop (WLL), and fiber to the home (FTTH) broadband equipment. CAUTION! The battery can energize hazardous live parts inside even when the AC input power is disconnected.

What lights should be on on a CyberPower box? ›

Depending on the model of cyber power you have, it will display different lights on it. If it is working properly and getting good power from a working outlet, the AC and Output lights should both be lit up green, and the others should be off.

What does CyberPower intelligent backup power do? ›

Helps prevent loss of data and minimizes the component stress caused by a hard shutdown. Diverts excess voltage away from sensitive electronic equipment during an AC power surge or power spike to prevent damage.

Top Articles
Latest Posts
Article information

Author: Sen. Emmett Berge

Last Updated:

Views: 6123

Rating: 5 / 5 (80 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Sen. Emmett Berge

Birthday: 1993-06-17

Address: 787 Elvis Divide, Port Brice, OH 24507-6802

Phone: +9779049645255

Job: Senior Healthcare Specialist

Hobby: Cycling, Model building, Kitesurfing, Origami, Lapidary, Dance, Basketball

Introduction: My name is Sen. Emmett Berge, I am a funny, vast, charming, courageous, enthusiastic, jolly, famous person who loves writing and wants to share my knowledge and understanding with you.