honestvip Posted January 22, 2017 Report post Posted January 22, 2017 Hi please help for deploy .net framework 3.5 into windows 10 thx Quote Share this post Link to post Share on other sites More sharing options...
GarthMJ Posted January 22, 2017 Report post Posted January 22, 2017 Create a PowerShell script to enable the .net 3.5 feature within windows 10. Then deploy that to your clients. Quote Share this post Link to post Share on other sites More sharing options...
dinci5 Posted January 22, 2017 Report post Posted January 22, 2017 You can either use Powershell or a simple cmd command to enable the feature. I enable the feature during OSD. Copy the sxs folder from your source media (Windows 10, Windows 8.1, etc...)You cannot use the sxs folder from Windows 8.1 in Windows 10 for instance. The folder is located in x:\Sources\sxs (x = drive letter) Because I do it during OSD, I've created package containing the script and the sxs folder. Now either create a Powershell script with this in it: Enable-WindowsOptionalFeature –Online –FeatureName NetFx3 –All -LimitAccess -Source $PSScriptRoot\Source\sxs Or you can create a bat file with this in it: DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:d:\sources\sxs -> No need for a bat file if it is via OSD. You can then just add a "Run Command Line" 1 Quote Share this post Link to post Share on other sites More sharing options...