Sitecore 10.2 Installation using Windows PowerShell
Hello everyone. Another blog post is here. This time we will see, how we can install Sitecore 10.2 locally using Windows PowerShell. Before proceeding for installation, there are some software's which will be required to be installed on system. Required Software: Visual Studio 2019 SQL server 2017 and above .NET Framework 4.8 and above Once installed, we can proceed with Sitecore 10.2 installation. Step 1: Open Windows PowerShell (run as administrator) Step 2: Run Command: Set-ExecutionPolicy -Scope CurrentUser Unrestricted and Select Y Step 3: Check if SIF framework is available: Get-Module -Name SitecoreInstallFramework -ListAvailable Step 4: I f 2.3.0 is available, skip step 5 Step 5: If yes, then check the version. For Sitecore 10.2 the version should be 2.3.0. If 2.3.0 is not available then update your SIF version using command: Update-Module SitecoreInstallFramework -force Step 6: Now Enable the Co...