Get IT Solutions

How to do IT
Menu
  • Home
  • SCCM 2012
    • Deploy Packages
    • Troubleshooting errors SCCM 2012
  • Windows
    • Applications Silent Install
    • Windows Tools
    • Windows Error
    • Script
    • Exchange Server
    • Troubleshooting Office
    • Applications Errors
  • Database
    • SQL Server
    • MySQL
    • Oracle
  • Cybersecurity
  • Other
  • Reviews

Error 0x800f081f on DISM and .NET Framework 3.5 – How to Fix it

The error 0x800f081f is a common error that shows up on Windows 10 and other windows versions. It’s popular on DISM and .NET Framework 3.5, and we’re going to outline how to fix the error on these two instances.

How To Fix Error 0x800f081f On DISM

DISM is one of the leading tools installed on Windows 10 because it can troubleshoot most of your PC problems. It’s capable of repairing and updating any corrupt file or image on Windows. When it starts showing errors, things get messy, the DISM tool runs an in-depth scan than the SFC scan.

The error normally shows up when you run the command “DISM/restore health”, or “DISM /Online /Cleanup-Image /RestoreHealth”. There are other DISM commands though that show this error code, the error message, in this case, will be displayed as:

"Error: 0x800f081f, The source files could not be found."
Use the "Source" option to specify the location of the files that are required to restore the feature. 
For more information on specifying a source location, 
see http://go.microsoft.com/fwlink/?LinkId=243077.”
Error 0x800f081f on DISM

Error 0x800f081f on DISM

Or in some cases you’ll see the message:

"The DISM source files could not be found."

What Causes Error 0x800f081f On DISM?

The error 0x800f081f on DISM shows that the built-in tool cannot find the files needed to fix the Windows image from the default location.

Fix 1: DISM Cleanup Command

This is the first and easiest fix to the error 0x800f081f on DISM on your computer, this simple fix requires running the DISM Cleanup Command in your command prompt. Here the steps to follow in order to execute this troubleshoot:

  1. Open the command prompt and Run as Administrator. You can find Command Prompt by searching “Command Prompt” in Windows search or using any other shortcut you might have.
  2. Once the Command Prompt Window opens you should type the command “sfc /scannow” and hit enter to run it.
  3. Then you run the second command: “dism.exe /Online /Cleanup-image /Restorehealth”(without the quotes) and hit enter to run the command
  4. If you don’t receive an error after successfully running this command, then you’ve taken care of the problem, and if error 0x800f081f is still showing up, then you need to apply another troubleshoot.

DISM Cleanup Command

Fix 2: Edit Group Policy

This fix is only applicable for Win 10 Pro, Enterprise, and education versions. You shouldn’t try this troubleshoot if you don’t have these versions, please. It requires configuring group policy, here are steps to follow:

  1. Open the Run dialog by pressing Windows + R keys.
  2. In the dialog box, you should type “msc” and click Ok, or hit the enter key.
  3. The Local Group Policy Editor will open, and you need to select “Computer Configuration”.
  4. Next, you choose “Administrative Templates”.
  5. Look for “System” and click on it.
  6. Locate the option that says “Specify settings for optional component installation and component repair”, it’s located by the right panel of the Local Group Policy Editor, you need to double click.
  7. You should now mark it “Enabled”.
  8. Click Ok and exit.
  9. You can now check if the error 0x800f081f on DISM is gone or not.
Edit Group Policy to fix Error 0x800f081f

Edit Group Policy to fix Error 0x800f081f

Fix 3: Use Windows Image to get Source Files

The error can show up when Windows is not able to find the source files. This fix is a lengthy one because it requires using the Media Creation Tool to create a Windows image before changing the DISM source. Here is how to do it:

  1. Download the Media Creation Tool from Microsoft websites. Just search for the tool by using the search box on the site or you can trace it by searching on Google.
  2. After installing the Media Creation Tool, you then launch.
  3. Accept the terms and continue.
  4. Mark the option “Create installation media (USB flash drive, DVD, or ISO file) for another PC” and hit the “Next” button.
  5. Disable the option “Use the recommended options fort his PC”.
  6. Then you select your preferences such as language, edition, and architecture.
  7. Click Next to continue.
  8. Select the ISO option and click Next.
  9. Choose the location and save the ISO file.
  10. After downloading the ISO file, you should now locate it and Right-click on it.
  11. Click on “Mount” from the menu.
  12. Locate esd and right-click on it, select “Copy” from the menu.
  13. Paste it on your Windows drive.
  14. Open Command prompt, make sure to run as administrator.
  15. Type cd/ and hit “Enter”, this will open the drive C: root folder.
  16. Then you add this command:
    dism /Get-WimInfo /WimFile:install.esd
  17. Different versions of Windows will be displayed with their index numbers and you need to enter your current Windows version.
  18. Next you run this command:
    dism /export-image /SourceImageFile:install.esd 
    /SourceIndex:IndexNumber /DestinationImageFile:install.wim 
    /Compress:max /CheckIntegrity 

    (replace Indexnumber in the command with the actual index number of your Windows version).

  19. Let the process finish and close the command prompt.
  20. Go back to Drive C: and you can see the Wim file.
  21. Run the Command prompt again as Administrator just like you did previously.
  22. Run the following commands separately, copy one command and then hit enter, then the second one also:
DISM /Online /Cleanup-Image /StartComponentCleanup
DISM /Online /Cleanup-Image /AnalyzeComponentStore
  1. And then run the third command: DISM /Online /Cleanup-Image /RestoreHealth /Source:WIM:c:\install.wim:1 /LimitAccess
  2. And finally, you run the system file checker command:
    sfc /scannow. 

    It can take some time before it finished, but if it’s taking too long, you should restart your PC and run the command again.

  3. You’re now done, it’s quite a long process, but it’s effective.

These are the best fixes for error 0x800f081f on DISM, let’s now look at how to fix the error 0x800f081f on .NET Framework 3.5.

How To Fix Error 0x800f081f On .NET Framework 3.5

What’s Error 0x800f081f On .NET Framework 3.5

The error 0x800f081f on .NET Framework 3.5 mostly shows up when installing .NET Framework 3.5, but it can still show up when in use. This error shows up only on Windows 10, Windows 8.1 & 8, Windows Server 2012 R2, and Windows server 2012. The three popular error messages received are:

  • "Error: 0x800F081F - The source files could not be found."
  • "Error: 0x800F0906 - The source files could not be downloaded."
  • "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."
Error 0x800f081f On .NET Framework 3.5

Error 0x800f081f On .NET Framework 3.5

What’s The Cause?

Incompatibilities of .NET Framework 3.5 is the major cause of the error 0x800f081f. All Windows versions that experience this error problem run the .NET Framework 3.5 using the feature called “Feature on demand”. Meaning that you’ll have to enable it because it’s not the default .Net Framework on the device.

As you might already know, new Windows versions namely Win 10 and 8 come with .NET Framework 4.6 and 4.5 respectively. If you install programs on your PC that work on .NET Framework 3.5, you’ll have to install or enable 3.5 if it’s already installed. So when you try to enable it, Windows update will look for .NET binaries and other important files. When there is a problem in this process, then you end up with error 0x800f081f displayed.

Fix 1: Install .NET Framework 3.5 using DISM

If .NET Framework is showing the error 0x800f081f during installation or when enabling it manually, you should consider using the DISM tool to enable it. For this, you need to have the ISO image or the installation media before you begin executing this fix. Once you have your installation media, you then follow the steps below:

  1. Open the command prompt by typing “cmd” in the Windows search from the start menu.
  2. The command prompt will show up and you should right-click on it and Run as Administrator.
  3. In the command prompt window, you should type this command and hit enter; Dism /online /enable-feature/featurename:NetFx3 /All /Source:<DRIVE>:\sources\sxsLimitAccess”, remove the quotes and also replace “DRIVE” with your drive name where your installation media is located. It should be something like “D:”.
  4. If the command still failed and is showing the error 0x800f081f, you need to recheck the source path of your drive and ensure that it’s correct.
Install .NET Framework 3.5 using DISM

Install .NET Framework 3.5 using DISM

Fix 2: configure Group Policy

Follow the same steps on Fix No.2 from the previous section for solving error 0x800f081f on DISM.

Fix 3: Reinstall .NET Framework 3.5

It can be possible that .NET Framework 3.5 is corrupt, in this case, you need to reinstall it, here is how to do it:

  1. Press the Win + I keys to open Windows Settings.
  2. Click on Apps and when you scroll down, you’ll see the Tab “Related Settings”, you should then click on “Programs and Features”.
  3. Next, you click on ‘Turn Windows Features On or Off’.
  4. From the Windows Features, you’ll see .NET Framework 3.5 (which includes both 2.0 and 3.0), check on that option, and click ok.
  5. Windows will now attempt to make new installations.
Reinstall .NET Framework 3.5

Reinstall .NET Framework 3.5

These are the ways to solve the error 0x800f081f on .NET Framework 3.5. We hope you’re able to fix the error 0x800f081f on your PC fast and don’t forget to let us know in the comments how things worked for you.

Share
Tweet
Google+
Pinterest
Linkedin
Stumble
Email
Prev Article
Next Article

Related Articles

stop error code 0xc000021a
We’ll share with you in this post how to fix …

Fix Stop Code Error 0xc000021a On Windows 10, 7 and xp

Task scheduler 0x41303 0x41302 0x41304 0x41305 0x41306 result codes
The next article will explain task scheduler 0x41303, 0x41302, 0x41304, …

Task scheduler 0x41303, 0x41302, 0x41304, 0x41305, 0x41306 codes.

Best Computers & Laptops

Best Computer for Cyber Security – Laptop and Desktop
Best Computer for Cyber Security
Hey, are you seeking the best computer for cyber security? Well, we must say you have come to the right place to find your answer and guidance. There are a plethora of products out there for you to pick from ...
Read More
Best Computer for Microsoft Office & Excel – Laptop and Desktop
Best Computer for Microsoft Office & Excel
Are you finding the Best Computer for Microsoft Office and Excel? In modern days, the best laptop or desktop set is the one which is both portable, has good looks and offers the smoothest performance. Microsoft Office is a package ...
Read More
Best Computer for Hacking – Laptop and Desktop Selection
Best computer for Hacking
When it comes to hacking, either laptop or desktop, choosing the best computer for hacking would be an exhilarating job. There are many specifications to be considered for hacking ...
Read More

SQL Server Tips

FIX sqlstate 42000 – mysql error 1064 – you have an error in your sql syntax
Sqlstate 42000 Is a general code that come together with other number. Most often comes with the code 1064 and ...
Read More
The execute permission was denied on the object – SQL Server Error
The execute permission was denied on the object
The following article will handle “the execute permission was denied on the object” error appears on SQL Server. This error ...
Read More
How to Read Data from LDF file in SQL Server – A Complete Guide
Read LDF File
Hello Everyone, Today we are going to address the most popular query of SQL users, how to read data from ...
Read More

Search

We are on:

Get FREE SPACE for your PC

3 Method to Delete Temp Files in Windows 7/10 including vbs script

In this post we will explain how to delete temp files windows 7 using three different methods including vbs script ...
Read More

Fastest way to delete hiberfil sys from windows 10/8/7 and XP – CMD

In this article we will explain how to remove or delete hiberfil sys from Windows 10/8/7 and XP . If you does ...
Read More

Learn How to Silent Install Applications

Silent Install Adobe Flash Player
In this tutorial will explain how to silent install adobe flash player 25, Msi and Exe version. How to disable auto update and uninstall older ...
Read More
Java Silent Install and Uninstall Older Version – Deploy Package MSI
This tutorial will explain how to silent install Java MSI/EXE version and disable auto-update. The command line will also uninstall the ...
Read More
Silent Install Adobe Shockwave Player 12 and disable update
In this tutorial will explain how to silent install Adobe Shockwave Player 12 msi and disable auto update. The command will uninstall older ...
Read More
Silent Install Google Chrome MSI, Silent Uninstall and Disable Auto Update
This tutorial will explain how to silent install Google Chrome MSI and disable auto update. The command will uninstall older version of ...
Read More
Silent Install Adobe Reader 11 and DC – msi and exe – disable update
In this tutorial will explain how to silent install Adobe Reader version 11 and DC. We will user both version "msi" ...
Read More
Silent Install Mozilla Firefox msi and exe file – Including Silent Uninstallation
This tutorial will explain how to silent install Mozilla Firefox. We will use MSI and EXE files to perform a silent ...
Read More
Skype Silent Install Msi and disable updates
In this tutorial will explain how to silent install skype  and disable auto update. The command will uninstall older version of Skype and ...
Read More
Filezilla Silent Install msi and exe version
Filezilla silent install tutorial will explain how to perform a silent installation of application. We will explain methods, silent install ...
Read More
Silent install VLC Media Player
In this tutorial will explain how to silent install VLC Media Player. We will explain both methods for exe and ...
Read More
Notepad++ silent install exe and msi version – Command Line
Notepad++ silent install is the new article from a series of silent installations. Notepad++ as free software has two main ...
Read More

Batch File Solutions

How to list files in cmd – Command Prompt – Windows 10
Whenever you want to search and make a list of all files on a specific folder, you used the windows ...
Read More
Batch rename multiple files in folder – CMD script – Bulk Method – Win 10
The following article will teach how to rename multiple files in a folder with the bulk method using Command Line ...
Read More
Batch script rename file using Command Line (CMD) & PowerShell – Windows 10
The following article will use the “rename” or “ren” command to rename the file using a command prompt. Also, we ...
Read More
Change extension of multiple files at once – CMD batch file
The following article will teach the methods to change the extension of multiple files at once using command prompt and ...
Read More
How to delete registry key with command line | PowerShell | Batch
The following article is the third of series about registry and working on it through command line (CMD) and PowerShell ...
Read More
How to add registry key & values with CMD | PowerShell | Batch
The registry is the place where most of the applications store the settings but not only. Used also from the ...
Read More
Unmap Network Drive CMD – (Batch file) – net use delete command
After we posted the methods to map network drive using cmd commands we come this time with the method to ...
Read More
Map Network Drive cmd (batch file) – net use user password
This article will focus on another way to map a network drive on your computer instead of from the explorer ...
Read More
How to Find Large Files on Windows 7 & 10 – CMD Forfiles Command
If the capacity of your hard drive is running low, it is time to clean off some files and to ...
Read More
CMD Script to check disk space on windows and multiple remote servers
The following article will provide you script to check disk space. The Script monitor space on windows and multiple remote ...
Read More

Get IT Solutions

How to do IT

About Us

Get IT Solutions is a personal blog, which is managed to guide people for various topic.

Second Menu

  • Donate
  • About Us
  • Contact Us
  • Privacy Policy

What Will You Find

Automation is our area of writing where are included scripts, batch and various tips to automate your daily job.
Copyright © 2025 Get IT Solutions