Forum Discussion
Kiran Hegde
Jul 24, 2018Copper Contributor
Installation of .net Framework 3.5 on build 17713 fails
I am using the following commands to install .Net Fw 3.5 on Windows server 2019 Insider preview build 17713 DISM /Online /NoRestart /Enable-Feature /FeatureName:NetFx3ServerFeatures DISM /Online...
- Aug 23, 2018
Kiran, you should use the /source:<drive>:\sources\sxs as Ante points out. If you don't use this, DISM will check WU, which does not have the package for a pre-release build.
Ante Bakovic
Jul 27, 2018Copper Contributor
Hello,
You should try with DISM, in my lab worked.
DISM /Online /NoRestart /Enable-Feature /FeatureName:NetFx3 /Source:D:\sources\sxs
DISM /Online /NoRestart /Enable-Feature /FeatureName:NetFx3ServerFeatures /Source:D:\sources\sxs
praveen7
Jan 15, 2019Copper Contributor
Great thanks!