Skip to main content

How to manage the Updates, Hotfixes and Install them using Update Center

In the later versions of Sitecore i.e. 9.0 Update 2 and onwards, Sitecore has introduced a tool called Update Center which is used to manage the following tasks on Sitecore platform and Sitecore modules.
  • Find the newer version
  • Find the updates on the existing version
  • Find the hotfixes if there are any
  • Listing them on the Update Center dashboard
  • Download and Install them
The Update Center can download and install the updates from a package in the file system using the Package Management Service.
You can find the Update Center tool on the Sitecore Launchpad.

Update Center listed under Control Panel category

Click and open the Update Center and you will see all the available updates for the Sitecore Platform and modules under the respective category if there are any. For me, under Sitecore platform updates, it is listing Sitecore platform 9.2.0 as the update available as my current version is Sitecore 9.1.1.

On the above picture, on the left pane, the Updates option will be selected by default displaying updates on the Sitecore platform and Sitecore modules if there are any. On clicking on Installed modules, we can see all the installed updates.

If someone wants a custom module to be installed, they can use the Install Custom update option to select an update package from the file system.

On the right pane, we can see the Update version, prerequisites, and post-installation steps.

Another important option which we should know on Update Center is Enter update mode/ Exit update mode. This button toggles between Enter update and Exist update modes. Entering the update mode wizard takes a while and do not close or refresh the wizard window.

The below picture shows the Ready to Install window once we click on any updates listed on the Update Center. On the picture, you will see some information along with a checkbox to switch to update mode when installing. Sitecore recommends entering the update mode when you want to install updates.










Advanced installation settings will give us update options to choose all or specific options to update when the update runs. The different options listed are shown in the below picture. After selecting the update options you can proceed with the installation by clicking on the Install button.









Installation of updates may take several minutes, wait for the wizard to complete the installation.

Please post your comments if there are any. 

Comments

Post a Comment

Popular posts from this blog

GraphQL for Sitecore: A beginner walkthrough

If you are a beginner in GraphQL and you are looking step-by-step by process to setup GraphQL API on Sitecore, please proceed further and setup up GraphQL API for Sitecore Before we jump start Sitecore GraphQL API, let us start some basic introduction of GraphQL. What is GraphQL GraphQL is a query language GraphQL provides a complete and understandable description of the data in your API It gives the power to ask exactly what you need and nothing more Designed to support the needs of the front-end Strongly typed, self-documenting Bandwidth efficient Easy real-time data Sitecore GraphQL API The Sitecore GraphQL API is a generic GraphQL service platform on top of Sitecore. It hosts your data and presents it through GraphQL queries. The API supports real-time data using GraphQL subscriptions Get GraphQL by installing the JSS server components package Sitecore GraphQL does not have any GraphQL endpoints defined by default Define at least one endpoint to use the GraphQL...

Custom Fields in Sitecore (Custom DropLink, DropTree, MultiList, TreeList and Required Field Validator)

Custom Fields in Sitecore Just thought to share few of the custom Sitecore fields that I have created for one of the sample project. This may help the community memebers to easily incorporate them into their project if they need any of them. Here are few. 1. Custom DropLink using Sitecore.Data.Items; using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Linq; using System.Text; using System.Web; namespace SitecoreCustom.Web.Extensions.CustomFields { public class CustomDropLink : Sitecore.Shell.Applications.ContentEditor.LookupEx { protected override void DoRender(System.Web.UI.HtmlTextWriter output) { this.ExcludeItems(); base.DoRender(output); } private void ExcludeItems() { Item item = Sitecore.Context.ContentDatabase.GetItem(base.ItemID); var LinkedField= Sitecore.StringUtil.ExtractParamete...

Sitecore 9.3 Installation | Common Issues and Resolutions

Recently, I have installed and setup Sitecore 9.3 on another machine. I faced similar/same kind of issues which I faced earlier. Thought, it would be helpful to the Sitecore Community if I capture and document them along with resolution steps I which took and be successful in settting up. Here are few of them I could document them. 1. Failed to start service 'Sitecore Marketing Automation Engine - sitecore93xconnect.dev.local-MarketingAutomationService (sitecore93xconnect.dev.local-MarketingAutomationService)'. Solution : This issue occurs because of non-self-signed certificates, hence please follow the below steps to resolve your issue. Execute below PowerShell script to find out if there are any non-self-signed certificates: 1. Open the PowerShell Console (Admin mode recommended) 2. Execute below command Get-Childitem cert:\LocalMachine\root -Recurse | Where-Object {$_.Issuer -ne $_.Subject} 3. If it shows any results listing any non-self-signed certificates...