This wiki article explains steps for offline installation of SharePoint Server 2016 RTM on Windows Server 2012 R2. Update: This article has been updated to reflect installation steps for SP Server 2016 RTM version.
This wiki article explains steps for offline installation of SharePoint Server 2016 RTM on Windows Server 2012 R2. This will be divided into 3 sections:
prerequisiteinstaller.exe /sqlncli:"C:\Installables\sqlncli.msi" /idfx11:"C:\Installables\MicrosoftIdentityExtensions-64.msi" /sync:"C:\Installables\Synchronization.msi" /appfabric:"C:\Installables\WindowsServerAppFabricSetup_x64.exe" /kb3092423:"C:\Installables\AppFabric-KB3092423-x64-ENU.exe" /msipcclient:"C:\Installables\setup_msipc_x64.exe" /wcfdataservices56:"C:\Installables\WcfDataServices.exe" /odbc:"C:\Installables\msodbcsql.msi" /msvcrt11:"C:\Installables\vc_redist.x64.exe" /msvcrt14:"C:\Installables\vcredist_x64.exe" /dotnetfx:"C:\Installables\NDP46-KB3045557-x86-x64-AllOS-ENU.exe"
If you are using PowerShell, you can use below command:
#Directory path where SP 2016 RTM files are kept
$PreRequsInstallerPath= "E:"
#Directory path where SP 2016 Pre-requisites files are kept
$PreRequsFilesPath = "C:\Installables"
Start-Process "$PreRequsInstallerPath\PrerequisiteInstaller.exe" -Wait -ArgumentList " `
/SQLNCli:`"$PreRequsFilesPath\sqlncli.msi`" `
/idfx11:`"$PreRequsFilesPath\MicrosoftIdentityExtensions-64.msi`" `
/Sync:`"$PreRequsFilesPath\Synchronization.msi`"`
/AppFabric:`"$PreRequsFilesPath\WindowsServerAppFabricSetup_x64.exe`" `
/kb3092423:`"$PreRequsFilesPath\AppFabric-KB3092423-x64-ENU.exe`" `
/MSIPCClient:`"$PreRequsFilesPath\setup_msipc_x64.exe`" `
/wcfdataservices56:`"$PreRequsFilesPath\WcfDataServices.exe`" `
/odbc:`"$PreRequsFilesPath\msodbcsql.msi`" `
/msvcrt11:`"$PreRequsFilesPath\vc_redist.x64.exe`" `
/msvcrt14:`"$PreRequsFilesPath\vcredist_x64.exe`" `
/dotnetfx:`"$PreRequsFilesPath\NDP46-KB3045557-x86-x64-AllOS-ENU.exe`""