📎 AI Summary:
The WindowsForum thread discusses issues with installing .NET Framework 3.5 required for the W7F Diagnostic Tool, specifically encountering an error during download. Multiple solutions are suggested: changing Windows Update settings via Registry edits, mounting a Windows ISO to use the DISM command to enable the feature, or removing and reinstalling .NET Framework through Control Panel. The overall sentiment is helpful, with users sharing different troubleshooting methods to resolve the installation problem.
The WindowsForum thread discusses issues with installing .NET Framework 3.5 required for the W7F Diagnostic Tool, specifically encountering an error during download. Multiple solutions are suggested: changing Windows Update settings via Registry edits, mounting a Windows ISO to use the DISM command to enable the feature, or removing and reinstalling .NET Framework through Control Panel. The overall sentiment is helpful, with users sharing different troubleshooting methods to resolve the installation problem.
Solution
This usually happens when the feature binary is missing (common in business). Download a Windows 10 ISO and right click iso and select mount.
Assuming it mounts to the D drive open an elevated command prompt and run
Assuming it mounts to the D drive open an elevated command prompt and run
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:D:\sources\sxs
If it mounts to a different letter change the /Source:D to the appropriate drive letter.AdrianG001
Senior Member
- Joined
- Feb 19, 2018
- Messages
- 108
I had this problem as well on my machine at work.
Try doing the following it worked and allowed me to download
the .Net Framework 3.5 on my Windows 10 azure virtual desktop PC : Go into RegEdit and
set the HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU folder.
DoubleClick on UseWUServer(UseWindowsUpdateServer) and change the value to 0.
If the value is already 0 this fix may not work for you. RESTART afterwards.
Try doing the following it worked and allowed me to download
the .Net Framework 3.5 on my Windows 10 azure virtual desktop PC : Go into RegEdit and
set the HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU folder.
DoubleClick on UseWUServer(UseWindowsUpdateServer) and change the value to 0.
If the value is already 0 this fix may not work for you. RESTART afterwards.
- Joined
- Jul 4, 2015
- Messages
- 8,995
This usually happens when the feature binary is missing (common in business). Download a Windows 10 ISO and right click iso and select mount.
Assuming it mounts to the D drive open an elevated command prompt and run
Assuming it mounts to the D drive open an elevated command prompt and run
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:D:\sources\sxs
If it mounts to a different letter change the /Source:D to the appropriate drive letter.