Enable .NET Framework 2 and 3.5 for Windows 10
Note: with every new build version of Windows 10, you will need to do this.
- You will need a copy of the new Windows 10 image. Either mount or extract it.
- Copy the 2 netfx3 files from .\sources\sxs to a new folder:
- Copy the script below and create a new batch script.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir c:\windows\temp\net | |
copy *.cab c:\windows\temp\net\ | |
dism.exe /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:c:\windows\temp\net |
Comments
Post a Comment