The .Net Framework 3.5 is not installed on your server.
So that we tried to add a new feature from Server Manager.
We followed the wizard until we got the Features section then we checked the .NET Framework 3.5 Features then we clicked on Install button.
But unfortunately, we got the below error:
The feature Installation failed because the source files could not be found!
Again, we tried to specify an alternative source path as shown below.
NET Framework 3.5 offline package
In Windows Server 2012 R2, the .NET Framework 3.5 feature is an on-demand feature that its files are not saved on the server during the Windows installation due to decreasing the disk space taken by the Operating System. So The feature Installation failed because the source files could not be found!
U:\Sources\SXS
U:\
Alternatively, you can use the Deployment Image Servicing and Management (DISM) command-line tool to enables the .NET Framework 3.5 feature without internet connection as the following:
Deployment Image Servicing and Management (DISM) is a command-line tool that is used to mount and service Windows images before deployment. for more details check DISM - Deployment Image Servicing and Management.
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:d:\sources\sxs
DISM /online /enable-feature /featurename:NetFx3 /all
repeat step with alter path it will work.
Back To Top