Published on TNWIKI:
Credits
This issue was initially reported by
Guy Horn on LinkedIN, republished with permission.
Issue
When you try to install MIM, it continuously fails.
You can’t add .NET Framework 3.5.
Symptoms
The installation was just hanging without error, warning, log, Event-log
Root cause
The problem was that some features were removed from the Windows Server Image.
Solution
NetFx3 should be specified and not ‘Net-Framework-Core’.
After re-adding the feature just ‘Add-WindowsFeature Net-Framework-Core’.
Detecting the issue
Run this PowerShell command, to find the removed features
# This command shows removed items from the Windows Azure Server 2016 Datacenter image. Get-WindowsFeature |
Solution
Restore the optional feature
# This command restores the optional feature, MyFeature, to the Online Windows image. If the files are not found in the source image, this command specifies not Enable-WindowsOptionalFeature |
Add .NET FW core
# Add the feature Add-WindowsFeature |
Script
# This command shows removed items from the Windows Azure Server 2016 Datacenter image. Get-WindowsFeature
# This command restores the optional feature, MyFeature, to the Online Windows image. If the files are not found in the source image, this command specifies not Enable-WindowsOptionalFeature
# Add the feature Add-WindowsFeature |
You must be logged in to post a comment.