Installieren des SharePoint 2013 ohne Internet Zugang ist Schwierig. Zuerst muss man die folgenden "Prerequisite" Dateien herunter laden.
- Windows Identity Extensions:
http://download.microsoft.com/download/0/1/D/01D06854-CA0C-46F1-ADBA-EBF86010DCC6/r2/MicrosoftIdentityExtensions-64.msi - SQL Server 2008 R2 SP1 Native Client:
http://download.microsoft.com/download/9/1/3/9138773A-505D-43E2-AC08-9A77E1E0490B/1033/x64/sqlncli.msi - Microsoft Information Protection and Control Client (MSIPC):
http://download.microsoft.com/download/9/1/D/91DA8796-BE1D-46AF-8489-663AB7811517/setup_msipc_x64.msi - Microsoft WCF Data Services 5.0 (umbenennen in WcfDataServices50.exe):
http://download.microsoft.com/download/8/F/9/8F93DBBD-896B-4760-AC81-646F61363A6D/WcfDataServices.exe - Microsoft WCF Data Services 5.6 (umbenennen in WcfDataServices56.exe):
http://download.microsoft.com/download/1/C/A/1CAA41C7-88B9-42D6-9E11-3C655656DAB1/WcfDataServices.exe - Windows Identity Foundation (KB974405):
http://download.microsoft.com/download/D/7/2/D72FD747-69B6-40B7-875B-C2B40A6B2BDD/Windows6.1-KB974405-x64.msu - Microsoft Sync Framework Runtime v1.0 SP1 (x64):
http://download.microsoft.com/download/E/0/0/E0060D8F-2354-4871-9596-DC78538799CC/Synchronization.msi - Windows Server AppFabric:
http://download.microsoft.com/download/A/6/7/A678AB47-496B-4907-B3D4-0A2D280A13C0/WindowsServerAppFabricSetup_x64.exe - CU 1 for AppFabric 1.1 (KB2671763):
http://download.microsoft.com/download/7/B/5/7B51D8D1-20FD-4BF0-87C7-4714F5A1C313/AppFabric1.1-RTM-KB2671763-x64-ENU.exe
Nun kopieren wir das Installation Medium des SharePoints auf unseren Server.
Bei mir "C:\install\SharePoint Server 2013 with SP1 (x64) - DVD (English)".
Dort gibt es ein Unterverzeichnis mit dem Namen "prerequisiteinstallerfiles".
Unblock-File -LiteralPath '$SPSourcePath\PrerequisiteInstallerFiles\WindowsServerAppFabricSetup_x64.exe'
In diese Verzeichnis kopieren wir nun alle unsere Downloads. Das sollte dann so aussehen.
Als nächsten erstellen wir uns ein PowerShell Script mit folgendem Inhalt:
Ziel ist es dem "prerequisiteinstaller" mitzuteilen wo er die Quellen der benötigten Anwendungen findet.
Bitte prüft ob die Dateinamen und die Namen in unserem Script übereinstimmen. Vor allem die WcfDataServices die wir umbenannt haben.
#Diesen Pfad Anpassen um auf die Installations-Quelle zu zeigen.
$SPSourcePath = "c:\install\SharePoint_Server_2013_with_SP1_(x64)_-_DVD_(English)"
Unblock-File -LiteralPath '$SPSourcePath\PrerequisiteInstallerFiles\WcfDataServices50.exe'
Unblock-File -LiteralPath '$SPSourcePath\PrerequisiteInstallerFiles\WcfDataServices56.exe'
Unblock-File -LiteralPath '$SPSourcePath\PrerequisiteInstallerFiles\AppFabric1.1-RTM-KB2671763-x64-ENU.exe'
Start-Process "$SPSourcePath\PrerequisiteInstaller.exe" –ArgumentList "/SQLNCli:$SPSourcePath\PrerequisiteInstallerFiles\sqlncli.msi /IDFX:$SPSourcePath\PrerequisiteInstallerFiles\Windows6.1-KB974405-x64.msu /IDFX11:$SPSourcePath\PrerequisiteInstallerFiles\MicrosoftIdentityExtensions-64.msi /Sync:$SPSourcePath\PrerequisiteInstallerFiles\Synchronization.msi /AppFabric:$SPSourcePath\PrerequisiteInstallerFiles\WindowsServerAppFabricSetup_x64.exe /KB2671763:$SPSourcePath\PrerequisiteInstallerFiles\AppFabric1.1-RTM-KB2671763-x64-ENU.exe /MSIPCClient:$SPSourcePath\PrerequisiteInstallerFiles\setup_msipc_x64.msi /WCFDataServices:$SPSourcePath\PrerequisiteInstallerFiles\WcfDataServices50.exe /WCFDataServices56:$SPSourcePath\PrerequisiteInstallerFiles\WcfDataServices56.exe"
Jetzt unser PowerShell Script speichern und ausführen.
Wenn wir alles Richtig gemacht haben sollte der PrerequisiteInstaller jetzt auch offline funktionieren.
Keine Kommentare:
Kommentar veröffentlichen