Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

Windows 8 comes with the .Net 4.5 framework as standard but, as part of being able to develop and deploy our applications, I need to also install the .Net 3.5 framework, so I can build applications for older versions as well as the new .Net.

However, while trying to install .Net 3.5 on Windows 8, I got the error 0x800F0906. How can I solve this?

Thank you.

share|improve this question
Why are you installing .NET 3.5? Just install 4.5. It contains everything from 4.0 and before in addition to 4.5 – Cole Johnson Nov 26 '12 at 21:06

migrated from stackoverflow.com Jun 12 '12 at 8:16

1 Answer

up vote 5 down vote accepted

There's an item at the bottom of this library article that details the steps you should take:


If installing the .NET Framework 3.5 on demand or enabling it in Control Panel fails, you may get error message 0x800f0906: "Windows couldn't connect to the Internet to download necessary files. Make sure that you're connected to the Internet, and click Retry to try again." This message may be displayed for the following reasons:

1/ Your computer is not connected to the Internet. Please connect, and then retry the operation.

If you are unable to connect your computer to the Internet, you can enable the .NET Framework 3.5 by using the installation media (ISO image or DVD) you installed Windows 8 Release Preview from. Mount the Windows 8 Release Preview installation media and type the following command from an elevated command prompt:

Dism /online /enable-feature /featurename:NetFx3 /All /Source:x:\sources\sxs /LimitAccess 

where x: is the drive letter for the Windows 8 Release Preview ISO image or DVD.

2/ Your administrator has configured your computer to use Windows Server Update Services (WSUS) instead of Windows Update for servicing. Please ask your administrator to enable the policy to use Windows Update instead of WSUS.


share|improve this answer

protected by Community Dec 19 '12 at 14:14

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.