.NET 3.5 installation comes up with Error 0x800F0906, then 0x800F0081F using dism

Posted by Austin Meadows on Super User See other posts from Super User or by Austin Meadows
Published on 2014-08-18T20:44:37Z Indexed on 2014/08/19 22:24 UTC
Read the original article Hit count: 395

I've recently tried installing .NET 3.5 for an application on Windows 8.1. I used the OS's popup thing to download/install .NET 3.5 and always get error code 0x800F0906.

Upon further research, I found I would have to pop in my Windows 8 CD and install it with this command, where "E:\" is where my CD is mounted:

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

This and any derivative of it (e.g., removing /LimitAccess) has not worked for me and has either given me the same error code (0x800F0906) or a different one, 0x800F0081F. I've even copied the sxs folder to my hard drive, just in case something was going on with the CD Drive, only to have the same results. In that case, I used this command line:

Dism /online /enable-feature /featurename:NetFx3 /All /Source:C:\dotnet35 /LimitAccess

I find this surreal because in both cases, the files are indeed there but the program thinks it's not. Here's the CBS.log file.

Any ideas on how to fix this? Any help is very appreciated :)

EDIT: I now have a proper dism.log file, I'm not sure what happened to the last one or why it did that. Here's the link to the new log file. It's interesting to note that it doesn't recognize some of the commands in the script such as "featurename" or "source".

© Super User or respective owner

Related posts about windows-8.1

Related posts about .net-framework