It sounds like you're on the right track suspecting WSUS settings might be interfering, especially in a work environment where updates are typically managed through a server. When WSUS is configured, Windows might not connect directly to Microsoft’s online servers, resulting in that error when trying to download optional features like .NET Framework 3.5.
One way to work around this is to temporarily bypass WSUS by changing a Group Policy setting. Here's a step you can try:
- Open the Group Policy Editor by typing
gpedit.msc
in the search bar and pressing Enter.
- Navigate to Computer Configuration > Administrative Templates > System.
- Locate the setting "Specify settings for optional component installation and component repair."
- Enable this setting, then check the box for "Contact Windows Update directly to download repair content instead of Windows Server Update Services (WSUS)."
If editing group policies isn't an option due to IT restrictions, I would suggest reaching out to your IT department for assistance. They can either provide access to the feature or adjust the policies accordingly.
Additionally, if your IT department allows it, you might be able to use the Windows installation media to install .NET Framework 3.5 offline using the command line:
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:D:\sources\sxs
Make sure to replace D:
with the correct drive letter of your installation media.
If you have any more questions or need further help, feel free to ask!