Skip to main content

SharePoint 2013 Prerequisite Download and install



Install and troubleshoot Online/Offline prerequisites issues for SharePoint 2013 (part 4)
This blog series details the complete installation of SharePoint 2013 on Windows Server 2016. In this blog, I’ll show you how to install SharePoint 2013 prerequisites Online and Offline. Also how to troubleshoot any issues that arise during the installation process.
Note: Make sure that you are connected with an internet connection because it may require you to download prerequisites software during the installation process.
SharePoint 2013 Installation Series:
Note : If you wish to see how to install SharePoint 2016 then please check my step by step guide to installing SharePoint 2016.
Steps:
Kindly follow the below mentioned steps to install prerequisites
Online Installation of SharePoint 2013 Prerequisites
1. Go the directory where do you have your installation files, select the Prerequisite.exe file and run as Run as Administrator

2. You will be prompted with User Account Control, click on Yes button to continue

3. In the following Microsoft SharePoint 2013 Products Preparation Tool screen, you will be able to see the complete list of the prerequisite products for installation. Click on Next button to continue
4. On the License Terms for software products screen, read the license terms carefully and check theCheckBox to accept the license terms. Click on Next button to continue
5. In the following screen, the Prerequisite Installer will enable the Application Server Role on your server. Then you will be asked to restart the Server. Click on Finish button to continue

6. Once you have restarted the Server, the Prerequisite Installer will be automatically resumed and continue the installation process.

7. The Prerequisite Installer will configure the below mentioned components on your Server.
§  Application Server Role, Web Server (IIS) Role
§  Windows Identity Foundation (Windows6.1-KB974405-x64.msu)
§  Microsoft Sync Framework Runtime v 1.0 SP1 (Synchronization.msi)
§  Windows Server App Fabric (WindowsServerAppFabricSetup_x64.exe)
§  Microsoft Identity Extensions (MicrosoftIdentityExtensions-64.msi)
§  Microsoft Information Protection and Control Client
§  Microsoft WCF Data Services 5.0 (WcfDataServices.exe)
§  Cumulative Update Package1 for Microsoft App Fabric 1.1 for Windows Server (AppFabric1.1-RTM-KB2671763-x64-ENU.exe)
8. In the following screen, you will be asked to restart the Server once all the components that are mentioned in step 6 are configured and installed. Click on Finish button to close the screen

Now all of the prerequisites for SharePoint 2013 will be installed and completed.
Offline Installation of SharePoint 2013 Prerequisites
Your Prerequisite Installation may have failed during the first attempt and encountered an error as depicted in the below screenshot
If this is the case, download the PowerShell scripts from this URL https://gallery.technet.microsoft.com/office/DownloadInstall-SharePoint-e6df9eb8
Below are the three PowerShell script that allow you to download and install prerequisites Offline.
1.    Install-SP2013RolesFeatures.ps1
2.    Download-SP2013PreReqFiles.ps1
3.    Install-SP2013PreReqFiles.ps1
First Script, you can use to configure Roles and Features on Windows Server 2012 R2

Now, you have to restart your Server. Once, the Server reboot. Kindly check and install Windows Updates on the Server and restart again.
If sometimes the Script run Error Configure the Roles & Features Manually
Step-1:Mout  sharepoint2013.iso and Copy all the folder to move to new Install location 

Ex:C:\SharePoint 
Step:2 Download all the  Share point 2013 Prerequisite Manually from the Below Link the Script-2 run 
After download Complete You can see 6 .exe files  in the Download Location Folder Move all to 
C:\SharePoint\Preprequsiteinstaller 
Once complete run the prerequisiteinstaller.exe 
If not Succeeds
Configure the Environment setting in System Configuration-
System Properties -> Environment Variables -> System Variables
Variable Name: PSModulePath
Variable Value: %SYSTEMROOT%\System32\WindowsPowerShell\v1.0\Modules



.Net Framework Path Setting With Roles and Features




Copy the Windows Server App Fabric (WindowsServerAppFabricSetup_x64.exe) to 
C: Drive   Ex:C:\WindowsServerAppFabricSetup_x64.exe
     Run the Commands in powershell with Admin Priviledge
       \WindowsServerAppFabricSetup_x64.exe /i CacheClient,CachingService,CacheAdmin /gac
      $file = “c:\WindowsServerAppFabricSetup_x64.exe” & $file /i CacheClient”,”CachingService”,”CacheAdmin /gac




Comments

Popular posts from this blog

How to execute Python Script in PyCharm-Configuration

Compile a VBScript into an EXE – iExpress

Sometimes you need to compile a vbscript into an EXE. There are a few applications that allow you to do this, however there is one already installed on the windows build called  iExpress . Before using this, you need to make sure your script works and launches what it is supposed to. E.g. if it launches Internet Explorer with a specific URL. Go to start menu > run and type  iExpress  and press enter. Next > until you are on  Package title . Here enter a title for your exe. Next > No prompt.  Next > Do not display a license.  Next > Add –  Here you will browse to your vbscript .  Next > In the install program section, you need to point to cscript.exe as this is what will run your script. So enter  C:\Windows\System32\cscript.exe “enter vbscript here.vbs” .  Next > Hidden.  Next > No message.  Next > Here you will select where you want to save your EXE files. Then ...