What if you need to install MIM (Microsoft Identity Manager) Portal on a server that has no internet connection?
Introduction
When installing MIM you could face a situation where the MIM servers is part of intranet, and internal domain, but without internet connection.
If you’re lucky the internet connection is redirected via an internet proxy, but that’s not always the case… Highly sensitive servers, like domain controllers or identity management servers, are better kept disconnnected or at
It’s a common scenario to avoid that an internal server (and in this case the MIM server) is establishing a break-out connection to internet.
But when you install Sharepoint for the MIM portal server, the installation wizard has some prerequisites to install and by default it will fetch the prerequisites… from internet.
Prerequisites
Source: https://learn.microsoft.com/en-us/sharepoint/install/hardware-and-software-requirements-2019
- Web Server (IIS) role (server feature)
- Windows Process Activation Service feature (server feature)
- Microsoft .NET Framework version 3.5 (server feature)
- Microsoft .NET Framework version 4.7.2 (server feature)
- Microsoft SQL Server 2012 Service Pack 4 Native Client
- Microsoft WCF Data Services 5.6
- Microsoft Identity Extensions (identity foundation > server feature)
- Microsoft Information Protection and Control Client 2.1 (MSIPC)
- Microsoft Sync Framework Runtime v1.0 SP1 (x64)
- Windows Server AppFabric 1.1
- Cumulative Update Package 7 for Microsoft AppFabric 1.1 for Windows Server (KB 3092423)
- Visual C++ Redistributable Package for Visual Studio 2012
- Visual C++ Redistributable Package for Visual Studio 2017
The server features you need to install from the Windows Server manager > Add Roles and Features.
The other options will be fetched from internet, but if you can’t connect to internet, you can manually download them.
Source information
- https://social.technet.microsoft.com/wiki/contents/articles/51940.sharepoint-2019-offline-installation-of-prerequisites.aspx
- https://nikcharlebois.com/install-sharepoint-2019-prerequisites-offline/
- https://learn.microsoft.com/en-us/sharepoint/install/hardware-and-software-requirements-2019
Due to the lack of the internet connection you might also see an additional erro when installin the AppFabric module..
AppFabric troubleshooting
Troubleshooting Error 1603
Solution (in my case)
Installation of AppFabric with verbose logging:
Start-Process -FilePath 'c:\temp\SharePoint\pre\appfabric\setup.exe' -ArgumentList '/i cacheclient","cachingService","CacheAdmin /gac /l c:\temp\appfabric.log' -Wait | Write-verbose
Other reference:
- https://stackoverflow.com/questions/11205927/appfabric-installation-failed-because-installer-msi-returned-with-error-code-1
- https://social.technet.microsoft.com/Forums/office/en-US/fc10049b-3da5-4a2e-b8ab-c3c93e69a68c/appfabric-installation-error-on-windows-server-2019?forum=SP2019
- https://www.codeproject.com/Articles/1275540/AppFabric-installation-failed-because-installer-MS
- https://social.technet.microsoft.com/wiki/contents/articles/52479.appfabric-troubleshooting-installation-failed-because-installer-msi-returned-with-error-code-1603.aspx
- http://blog.ylnotes.com/winfix-installing-appfabric-1-1-for-windows-server-raise-error-1603/
- Fixing powershell path
You must be logged in to post a comment.