Skip to content

Instantly share code, notes, and snippets.

@tralston
Created April 10, 2018 03:56
Show Gist options
  • Save tralston/bd4be23594b4dff11973b7d7df2c8531 to your computer and use it in GitHub Desktop.
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.
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