Created
April 10, 2018 03:56
-
-
Save tralston/bd4be23594b4dff11973b7d7df2c8531 to your computer and use it in GitHub Desktop.
[Install .NET 3/3.5 Framework on Windows 8, 8.1 and 10] Check status of and install .NET 3.5 Framework on later versions of Windows that have removed it.
This file contains hidden or 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
rem Check if it is installed to begin with. | |
DISM /Online /Get-Features /Format:Table | findstr -i netfx3 | |
rem Install .NET 3(.5) | |
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:D:\sources\sxs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment