How to enable .Net Framework 3.5 on Microsoft Windows Server 2012 R2



Recently, I had to put on my System Administrator cap for couple of hours. I was to set up two Dell PowerEdge 1720 server computers for use as Test Servers. The two servers were to run Microsoft Windows Server 2012 R2 and that .Net framework 3.5 must be enabled on the servers as it is one of the requirements needed by the enterprise application to be installed on the servers.

Enabling .Net framework 3.5 on Windows Server 2012 R2 can be done through the Server Manager by clicking on Add Roles and Features and then under Features selecting .Net framework 3.5 or through Command Prompt or Windows Power Shell. As it is Microsoft’s custom to put the required files for required role or features in the side-by-side folder. One would have thought that .Net Framework 3.5 files should be in the folder also as it is in Windows Server 2012’s side-by-side folder.

So an attempt to enable .Net framework 3.5 on Windows Server 2012 R2 would give an error “that Installation of one or more roles, role services or features failed. The source file could not be found” like the one shown in the picture below. This means that the .Net framework 3.5 (which includes 3.0 and 2.0) files are not included in Windows Server 2012 R2 setup.



If the server is connected to the internet and it has Windows update enabled, the framework can be pulled from the internet and added to the Windows installation folder by the OS when enabling the feature. But the servers I was configuring had no internet connections which means that there was no way the framework could be pulled from the internet.

What I did was to copy the side-by-side folder from Windows Server 2012 setup, (not Windows Server 2012 R2 setup) since it contains the files needed to install the .Net 3.5 framework, I then ran Command Prompt as an administrator with the following commands.

        dism.exe /online /enable-feature /featurename:NetFX3Serverfeatures /Source:D:\sxs 
    
To enable the feature
        dism.exe /online /enable-feature /featurename:NetFX3 /Source:D:\sxs /LimitAccess
               
To install the feature



where D:\sxs is the path of the folder containing the required files that I copied from Windows Server 2012 setup side-by-side folder.

I hope I have been able to save someone precious time.




Share this page on


  2 People Like(s) This Page   Permalink  

 Click  To Like This Page

comments powered by Disqus

page