Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Install .NET Framework 3.

5 in Windows 10 offline
To start, you need a installation media of Windows 10. It can be the ISO you downloaded, a
DVD, a USB, whatever you have.
Insert your Windows 10 DVD or USB, or double click on it’s ISO file to mount it.
Open This PC and note what drive letter of the Windows 10 installation media.
Now, open Command Prompt as Admin. (To do so,  press Win+X and click on Command Prompt
(Admin)).
Now just type in the following command: Dism /online /enable-feature /featurename:NetFX3
/All /Source:Y:sourcessxs /LimitAccess Be sure to replace the Y with the drive letter of your
Installation media.
Now just hit Enter  and wait for the installation process to finish. Typically, the process will take
a couple of minutes.

Here are the details of the command line parameters of the command given above:
/Online targets the current running operating system.
/Enable-Feature /FeatureName:NetFx3 specifies that .NET Framework 3.5 is to be
installed/enabled.
/All enables all the parent features of the .NET Framework 3.5.
/LimitAccess prevents DISM from contacting Windows Update.
/Source specifies the location of the files needed.

You might also like