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 complete line of uninterruptible power supply (UPS) systems to meet the full spectrum of power protection needs from enterprise applications to home office and entertainment systems.

Does CyberPower PC have a software? ›

CyberPower offers free power management software with compatible Uninterruptible Power Supply (UPS) systems to monitor and control your UPS. Our software suites, PowerPanel® Personal, and PowerPanel® Business, support operating systems including Windows, Linux, macOS, and various Virtual Infrastructure platforms.

How to connect CyberPower UPS to PC? ›

Connect the serial/USB cable to the UPS unit and an open serial port on the back of the computer. You must use the cable that came with the unit.

What does CyberPower USB do? ›

USB Chargers from CyberPower charge and power an array of mobile devices and electronic equipment, including tablets, Smartphones, cameras, PDAs, MP3 players, and other accessories. They are available as car chargers, wall chargers, and power splitters.

How long will CyberPower last? ›

The battery lifespan depends on the ambient temperature and the cycle times of charging and discharging. Higher ambient temperature and frequent charging and discharging cycles will reduce the lifespan. Typically the battery lifetime is between one to three years depending on environment conditions.

Do CyberPower PCs come with antivirus software? ›

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. Registration of the product is part of the Windows first-time startup process for your PC.

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.

How does software Center get installed? ›

Software Center is installed automatically on Windows devices that your IT organization manages. For the simplest method to start Software Center, go to Start and type Software Center . You may not need to type the entire string for Windows to find the best match.

How to activate software center? ›

Launching Software Center

To find the Software Center, click the Start button on the bottom left corner and search Software Center. It is highlighted in blue below. Launch Software Center by clicking on it.

What is a config manager? ›

Microsoft System Center Configuration Manager (SCCM) is a Windows product that enables the management, deployment and security of devices and applications across an enterprise. Amongst other potential uses, administrators will commonly use SCCM for endpoint protection, patch management and software distribution.

What does CyberPower UPS do? ›

CyberPower designs and manufactures a complete line of uninterruptible power supply (UPS) systems to meet the full spectrum of power protection needs from enterprise applications to home office and entertainment systems. Award-winning Backup UPS is ideal for small business and home applications.

Is CyberPowerPC Wireless? ›

This CyberPowerPC desktop computer offers Wi-Fi (802.11ac) as well as a Gigabit Ethernet RJ-45 LAN jack so you'll be able to have fast wired or wireless internet access.

How do I get into CyberPower BIOS? ›

Press <Del> after the CyberPowerPC Logo or Motherboard Manufacturer's Logo appears. Once the BIOS Setup screen appears, navigate to the storage section.

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 cases does CyberPower use? ›

CyberPowerPC uses a Phanteks Eclipse P200A mini-tower, which is one of our favorite airflow PC cases. Despite the small form factor, it can accommodate high-end components.

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. CAUTION!

What lights should be on on a CyberPower box? ›

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. If it is working properly and getting good power from a working outlet, the System Status light should be lit up green, and the others should be off.

Top Articles
Latest Posts
Article information

Author: Fredrick Kertzmann

Last Updated:

Views: 6077

Rating: 4.6 / 5 (66 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Fredrick Kertzmann

Birthday: 2000-04-29

Address: Apt. 203 613 Huels Gateway, Ralphtown, LA 40204

Phone: +2135150832870

Job: Regional Design Producer

Hobby: Nordic skating, Lacemaking, Mountain biking, Rowing, Gardening, Water sports, role-playing games

Introduction: My name is Fredrick Kertzmann, I am a gleaming, encouraging, inexpensive, thankful, tender, quaint, precious person who loves writing and wants to share my knowledge and understanding with you.