Posted  by  admin

Enabling Os Feature Netfx3

Enabling Os Feature Netfx3 Rating: 6,0/10 8409 votes

Has anyone run into this yet. I am trying to install Sage 50 software on a Windows 10 system and as part of the installation in needs to install.NET Framework 3.5. I get the box asking if I want to reach out to Microsoft Update to get the software and I get a failed message with error code 0x800F081F.I have tried downloading it directly but it still has to reach out to Microsoft update and I get the same failed message. I have also tried using DISM both to reach out to Windows update and to pull it off the Windows 10 install media I have and I still get the same error message no matter what.

I have continued to research this issue but with no luck.The system I am doing the install on is a new fresh install of Windows 10. I have installed this Sage software on a laptop that was purchased with Windows 10 already on it and the.NET framework installed just fine. Not sure what the difference would be with this install.Net 3.5 source files are not transferred on the machine after install but are still available on the installation media.When you do use the CMD line you need to make sure the syntax is right, and run it as an administrator to make sure;).ie:DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source::sourcessxsWhere is the drive letter of your mounted ISO or mediaNotice the backslash at the end? This is required for some reasons. I've struggled with that installation also until I figure that little thing out.Same thing goes for the GUI option.

You can right click Mount Image in Windows 8/10. Just FYI.VericomITguy wrote:Carl Holzhauer wrote:Mount the ISO and install from the command line; it'll complete in about a minute and you'll be on your wayThis did it.

I had burned the iso to disc but using the DISM tool it could not pull the files needed from there. So I downloaded Virtual Clone Drive and mounted the iso.

When I ran the DISM command I pointed it to the mounted virtual drive and I finally manged to install.NET Framework 3.5 and also the Sage 50 software. Thanks everyone for the help.

Enabling Os Feature Netfx3 Sql Server

Post your SCCM tips and tricks, requests for help, or links others might find useful! Post not showing up?It might have been caught by the spam filter. URL shorteners cause this almost every time, but so do strings of apparent gibberish like WSUS and PXE sometimes. We don't check the modqueue very often.

if your post is stuck!Resources:.(largely outdated)Chat Groups.Current Version:.Flair:. Flair is reserved for Microsoft employees and MVPs. Please send mod mail if you qualify and would like flair set for your account.Contributing MVPs.Contributing Microsoft Employees. Hi all,I have a task sequence step which runs a Powershell script to enable the.NET 3.5 feature, and this worked fine prior to 1809. Now it just doesn't work.

Enabling os feature netfx3 server 2012Enabling

Sql 2012 Install Enabling Os Feature Netfx3

I've tried both my existing script and every other one I can find online, including this one with a package:'%SystemRoot%System32Dism.exe' /Online /LogLevel:4 /Add-Package /PackagePath:'sccmsourcessoftwaredotNet35-win10filesInstall.NET 3.5 on Windows 10microsoft-windows-netfx3-ondemand-package31bf3856ad364e35amd64.cab' /NoRestart /QuietBut it just causes the TS to fail and reboot to whatever stage the OS deployment was at before this TS step.Any ideas?Thanks!. HiWhat I ended up doing to all my images, is to mount the Wim file, and use dism to inject Net 3.5 directly into the Wim file.That way I dont need to install it in every TS.#Mount WIM file to C:tempmount#Index 3 is used for enterprise.

Make sure this is correct for current WIMdism /mount-image /imagefile:c:tempinstall.wim /index:3 /MountDir:c:tempmount​#Modify the image​#Add net3.5DISM /Image:c:tempmount /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:c:tempsxs#enable smb1DISM /Image:c:tempmount /Enable-Feature /FeatureName:'SMB1Protocol' -All​#cleanup ImageDism /Image:C:testoffline /cleanup-image /StartComponentCleanup /ResetBase​#Unmount and commit changesdism /unmount-wim /mountdir:”c:tempmount” /commit​Is what i do everytime a new build is out.I might not be the prettiest script, but it works:)​.