When I try to install .net 3.5 I get the follwing message: > The following feature couldn't be installed: > > .NET Framework 3.5 (includes .NET 2.0 and 3.0) > > Error code: 0x800F081F I tried with a standalone package and through Windows Features. Update: Internet connection is fine. read more
It took me several hours to fix the issue because the local component store was corrupted and the computers are accessing a local WSUS server instead of the public update server by Microsoft (and because I use Dism very rarely). For reference and to help other people with the same [...] read more
I'm using Windows 8.1 x64, build 6.3.9600.16384, using the Command Prompt with administrator privileges. sfc /scannow returns: ...found corrupt files but was unable to fix some of them. and dism /online /cleanup-image /restorehealth returns: Error: 0x800f0906 The source files could not be downloaded. (and the Windows Update Service is not [...] read more
I have been trying to run sfc /scannow in cmd but have been unsuccessful. Therefore, after some research on the Internet, I turned to the following command: DISM /Online /Cleanup-Image /RestoreHealth /source:WIM:X:\Sources\Install.wim:1 /LimitAccess where X indicates the drive letter where the Windows .iso is mounted. (I mounted the .iso file [...] read more
I am struggling to install .NET Framework 3.5 on docker container. I have 4.5 installed already, but need 3.5 to run one Service. Here is my Dockerfile: FROM microsoft/windowsservercore SHELL ["powershell"] RUN Install-WindowsFeature NET-Framework-45-ASPNET ; \ Install-WindowsFeature Web-Asp-Net45 RUN dism /online /enable-feature /featurename:NetFX3 /all COPY Startup Startup COPY Service Service [...] read more
I am trying to install the Media Foundation feature onto a Windows 2012 R2 box in preparation for it to be used as an RDS Session Host. However, all attempts to install fail with: Installation of one or more roles, role services, or features failed. The source files could not [...] read more
I have just updated my work PC to Windows 10 Enterprise. After the update I have noticed that all of my remote connection tools other than RDP wont install or wont work and I am getting a prompt to install .NET Framework 3.5. I have tried several different ways to [...] read more
How can I run DISM agaisnt a USB Windows installer to repair my local Windows files? This is what I tried in Windows 8.1: DISM /Online /Cleanup-Image /RestoreHealth It returns error 0x800f081f: enter image description here [https://i.stack.imgur.com/V3rno.png] Note that my WinSxS folder has several folders and sizes 6.88 GB, however [...] read more
Everytime I try to install the Management GUI on Server Core I get this error. Install-WindowsFeature : The request to add or remove features on the specified server failed. Installation of one or more roles, role services, or features failed. The source files could not be downloaded. Use the "source" [...] read more
The problem I have is that I can't install the 2018-08 Cumulative update (KB4346783). Every time I restart to install the update I get the typica 'please wait while Windows installs updates' screen with the circling dots, my PC restarts, then I get an icon in the system tray telling [...] read more
Since I upgraded to Windows 10 I'm no longer a "real" administrator on my personal computer and I can't download anything from Windows Update. When I try to install .NET 3.5 I get > Error 0x800F081F I already tried to change the source directly in the command panel (as admin) [...] read more
My laptop came with Windows 8 pre-installed. I installed all Microsoft updates, including that to 8.1 and have continued to do so. The latest update which has come through is KB 2912355 which is a massive 890 MB. This has refused ti install, despite many attempts. The system reports error [...] read more
I am not sure what started this, but my start button, when pressed won't show the start menu button. The start menu also won't show when pressing on the windows button. This issue also affects some buttons on the taskbar, like the Network, Time, Sound and some others that usually [...] read more
I really want the Win10 Dark Mode theme update, but I cannot seem to get build 1809 installed. My machine is a Dell Precision T1700 running Windows 10 Enterprise. Windows Update says all updates are installed, yet it's still on build 1803. I have run Windows Update Assistant twice now [...] read more
I've been trying to install .NET Framework 3.5 on a Windows 8.1 computer without any luck. I tried the basic approach of downloading and installing it from MSDN which failed saying it couldn't connect to the internet. Then I tried dism as explained in several forum posts: Dism.exe /Online /Enable-Feature [...] read more
After running sfc /SCANNOW in my Windows 10 Pro installation, and getting > "Windows Resource Protection found corrupt files but was unable to fix some of > them. Details are included in the CBS.Log windir\Logs\CBS\CBS.log." I tried to follow the steps here: http://answers.microsoft.com/en-us/windows/wiki/windows_10-update/system-file-check-sfc-scan-and-repair-system-files/bc609315-da1f-4775-812c-695b60477a93 and here http://www.tenforums.com/tutorials/7808-dism-repair-windows-10-image.html After having created the [...] read more
I had problem install windows update. I found in event log problem with component store. First I check component store with Deployment Image Servicing and Management tool. Scanhealth dism /online /cleanup-image /scanhealth Result The component store is repairable. The operation completed successfully. CheckHealth dism /Online /Cleanup-Image /CheckHealth Result The component [...] read more
I am running a fresh mcr.microsoft.com/dotnet/framework/runtime:4.8-windowsservercore-ltsc2019 The first thing I try to do is install Print-Server but gives me an error (It is the first time I am installing a windows feature with powershell): add-WindowsFeature -Name Print-Server add-WindowsFeature : The request to add or remove features on the specified server [...] read more
I did the basic checks like not having folders on network drives, changing certain git config settings, using a different repo, anti virus scan ect. So far I know the problem isn't tied to my Windows account. On another device it only takes a few seconds to switch branches, not [...] read more
I've got a script trying to install some features on Server 2016. If it detects that .Net 3.5.1 isn't installed, it builds the following DISM.exe command: Start-Process -FilePath DISM.exe -ArgumentList "/Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:`"$env:SPbits\PrerequisiteInstallerFiles\sxs`"" -NoNewWindow -Wait I've got the sxs directory and have placed the 3.5.1 installer in [...] read more
I just upgraded to Windows 10 and then tried to install WIX and kept getting errors that .Net 3.5 wasn't installed and it has to be in order to install WIX. So I tried installing it and couldn't (I repeatedly got an error 0x800F081F). So I clicked on Help me [...] read more
I am trying to install .NET 3.5 on a Windows Server 2016, through SCCM 2012, with the source file located on a remote network location, without mounting the ISO locally. My .NET 3.5 installation keeps failing on a Windows Server 2016. Running the usual Install-WindowsFeature Net-Framework-Core -source \\Applications\Net35_2016\sxs Fails with [...] read more
Is it possible to use a Windows installation USB drive as the source for DISM? The USB installer was created using Microsoft's Media Creation Tool. This MS article states: > You can use a mounted Windows image from a WIM file as a source to restore > optional features and [...] read more
It's been almost 3 days and I have tried almost all the methods provided on internet to install .NET framework on Windows 10 but no luck. Method 1. When I tried to install it from control panel by enabling the feature it gets stuck for at "Downloading required files screen [...] read more
I've got a corrupt Windows 10 installation (SFC noted Windows Resource Protection found corrupt files but was unable to fix someo of them...) so I tried to run DISM, from a Windows 10 PE USB installation. (Note: Win10 PE current OS is at c: and offline system on system is [...] read more
I noticed this problem when I encountered 2502 and 2503 erros while attempting to install an SDK. I believe I've been having the 250[2|3] errors since upgrading from windows 8.1 to windows 10. I ran dism /Online /Cleanup-image /Scanhealth that responded The component store is repairable. so I ran dism [...] read more
(tl;dr; sorry about the long post, text in bold has main details) I have a Windows 10 and KDE Neon dual boot laptop. I rarely boot my Windows partition but I do use it regularly through a virtualized configuration with VMware in Neon. This has worked great for the most [...] read more
I've tried to run sfc /scannow 3 times and restart between them, but it's not solved by that way. I've tried CHKDSK too but it still error. Also, I've tried CHKDSK with the online but cant fix them. please fix [https://i.stack.imgur.com/yOShZ.png] here are the rar files rar here are the [...] read more
Goal I'm trying to install IIS on remote server using azure devops. I have done this on other vm servers without issue. Problem When running this stage the Agent Errors with very little details Agent Errors when installing IIS Error 2020-08-11T19:06:19.1822182Z ##[section]Starting: IIS Web App Manage 2020-08-11T19:06:19.1984662Z ============================================================================== 2020-08-11T19:06:19.1985052Z Task [...] read more
I need to install OFFLINE features of Windows like "LegacyCompoents", "DirectPlay", ".NET Framework 3.5", "Windows Subsystem Linux" and "Developer Mode" on Windows 10 (Home/Pro x64 1909). Online, it works fine with that (run as admin, obviously): cls @echo off cd /d "%~dp0" reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock" /t REG_DWORD /v "AllowDevelopmentWithoutDevLicense" /d [...] read more
I am trying to install the QuickBooks SDK v13 on a windows 10 computer for development and then again on a Windows 2016 Machine for production use. I am getting stuck in a loop of trying to install old .Net Frameworks. I am following these instructions: https://developer.intuit.com/docs/01_quickbooks_desktop/1_get_started/20_download_and__install_the_sdk Here are some [...] read more
In azure create a new Windows 10 Enterprise N compute instance. Log onto the box and use Turn Windows features on or off to add .net framework 3.5 it errors with error code 0x800F081F I've googled everywhere for this and there seem to be loads of advice to uninstall various [...] read more
I am trying to install SQL Server on a VM of Windows 8(.1). I installed it before, but then I deleted the VM and created an identical copy. Now, I can't seem to install it at all. This was all on a Windows 8.1 host, with a Windows 8 guest [...] read more
Can anyone lend me some assistance in repairing my server 2012 R2 image? I have a 2012 R2 VM, and have attached the install DVD we used from our datastore. I am then running the command: dism /online /cleanup-image /restorehealth /source:WIM:D:\sources\install.wim:1 /limitaccess I can see the WIM exists in that [...] read more
My system has been stuck in this for ~2 months. Windows Update states I've missing security and quality fixes with the following message: There were some problems installing updates, but we'll try again later. If you keep seeing this and want to search the web or contact support for information, [...] read more
After a bad Windows Update, sfc /scannow has confirmed that a bunch of .NET Framework 4.0 files are "corrupt". Here is an extract from the logs listing all corrupted files: C:\WINDOWS\Microsoft.NET\Assembly\GAC_MSIL\PresentationFramework\v4.0_4.0.0.0__31bf3856ad364e35\\PresentationFramework.dll; source file in store is also corrupted C:\WINDOWS\Microsoft.NET\Assembly\GAC_MSIL\PresentationFramework-SystemData\v4.0_4.0.0.0__b77a5c561934e089\\PresentationFramework-SystemData.dll; source file in store is also corrupted C:\WINDOWS\Microsoft.NET\Assembly\GAC_MSIL\System.Windows.Controls.Ribbon\v4.0_4.0.0.0__b77a5c561934e089\\System.Windows.Controls.Ribbon.dll; source file in [...] read more
There are several posts along this line, but the fixes that answered other questions did not solve my problem. * Windows 10 Pro * Upgraded from W7 Pro, then did a "Reset", as I was having some problems with a screen saver and wanted to get a cleaner install without [...] read more
Today I tried to launch Notepad and nothing appeared to happen -- no error, nothing in the taskbar. I checked Task Manager and the Detail tab shows no entry for notepad.exe. There are two notepad.exe binaries, one in C:\Windows and one in C:\Windows\system32. Both show the same behavior (not launching), [...] read more
I need help using Dism /Online /Cleanup-Image /RestoreHealth to fix corrupt system files. I tried sfc/scannow, and it said it found corrupt system files, but can't fix them. I then proceeded to look up this issue, and it told me to use the Dism command. Here is the error that [...] read more
This is very bizarre, but it's happened twice now, so I want to see if anyone else has run into it. On Windows 10, after an automatic Windows Update, I am getting crossing network streams, meaning that one connection ends up receiving data from a different active connection. I know [...] read more
First of all, I know this is a duplicate but there was no real answer to the other question Windows 10 DISM error: 0x800f081f and I'm still not allowed to comment. :/ My original problem is an annoying glitch: every time I close a file browser window (tried firefox and [...] read more
I just upgraded my computer to Windows 10 from Windows 7 using the Media Creation Tool. However, after the upgrade, my settings doesn't start. It just blinks then exits. I did an "sfc /scannow" scan and it cannot repair the damage. Here is the repair attempt log: 2015-07-30 04:14:39, Info [...] read more
I am using Windows 8 x64 and would like to install the .NET Framework 3.5. I've downloaded the full package dotnetfx35 from http://www.microsoft.com/en-us/download/details.aspx?id=25150. Installation fails with Error: 0x800f081f the source files could not be found. Regression: * I've already read How to enable .NET Framework 3.5 on Windows 8 without [...] read more
Running into some issues dockerizing one of our Window's C++ x86 application while adding "Removed" base container features. Some work, others fail. The container host is Windows Server 2019 Standard, Version 1809, and the container base image is mcr.microsoft.com/windows/servercore:ltsc2019. The dockerfile: # Sample Dockerfile # Indicates that the windowsservercore image [...] read more
I have installed a fresh copy of windows 8. Since, dot-net framework 3.5 is not installed in it. I used microsoft's dism tool to enable this feature. I inserted windows 8 dvd and create a cmd file as follows Dism /online /enable-feature /featurename:NetFX3 /All /Source:E:\sources\sxs /LimitAccess E: drive is my [...] read more
I have Windows 8.1 64-bit installed on my PC and when i install .net 3.5 it's showing this error Error: 0x800f081f The source files could not be found. Use the "Source" option to specify the location of the files that are required t o restore the feature. For more information [...] read more
When I am installing SQL Server 2008 R2 on Windows 8.1 there was an error saying download and install .net framework 3.5 (including 2.0 and 1.0) And when I'm trying to install .net framework 3.5 from command prompt with following command, C:\Windows\system32>DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /Limit Access /Source:c:\Windows\Logs\DISM\dism.log I [...] read more
According this link I am gonna install IIS Windows features inorder to offline mode. I have mounted my install.wim and so on like above link. But when i run this command : Dism /Image:C:\test\offline /Enable-Feature /FeatureName:WCF-NonHTTP-Activation /All I got this error: Deployment Image Servicing and Management tool Version: 10.0.16299.15 Image [...] read more
On Windows 10, I've uninstalled a corrupt installation of the above, but when I try to reinstall, I keep getting errors. The uninstall has left folders and files behind in both the Program Files and Program Files (x86) folders. I've used CCleaner to tidy up the registry, but still getting [...] read more
I'm running W2K16 up-to-date as of today installed from stock Dell media. I've been attempting to install Windows Backup on this new server but it isn't working. I've been looking in c:\windows\logs\cbs and see that it refers to a few languages (RU/KR) that I never installed and source issues. Does [...] read more
At present we are having some difficulties with one of our Terminal Servers. It is a VM Server 2012 (64bit) What is happening at the moment is that random applications (IE, Chrome, Notepad, Word, Outlook, Excel, Explorer) will start becoming unresponsive (it is not "Not Responding" you are unable to [...] read more
My Dell Inspiron 5558 has been updated to Windows 10 Creators Update. Few days after updating, pinned apps on the taskbar disappeared. I have been trying fixing this weird behavior by doing some workarounds: * Repinning one of the apps. All the pinned apps appear, but after the laptop restarts, [...] read more
Windows Update Standalone Installer's response is - the update is not applicable to your computer. I have a CBS.log file related to this case but I cannot submit it for your further analysis because the size of it is about 91.3 KB and the limit of SUPERUSER's body size is [...] read more
I just finished building/upgrading my PC and clean installed Windows 10. Soon I got a "Page fault in nonpaged area" BSOD and flicering/vibrating screen after restart where I couldn't click anywhere. I restarted again and the problem was gone but I am worried because this is a clean install and [...] read more
When I try to check my data usage in Windows 10 (ms-settings:datausage) my data usage doesn't show up. On the main screen it says 0MB. When I click "View usage by app" to get more detailed information the page is broken. The "Show usage from" menu is blank.Data usage view [...] read more
I have a really strange problem similar to this, but not the same. I started with sfc /SCANNOW and got the error: Windows Resource Protection found corrupt files but was unable to fix some of them. Details are included in the CBS.Log windir\Logs\CBS\CBS.log. For example C:\Windows\Logs\CBS\CBS.log. Note that logging is [...] read more
I am running a Windows 10 home edition, I tried to install the following Update: Image It reports back an error code, 0x800f081f. I googled searched for a solution, tried all of them including enabling the .NET framework, Standalone Installer, manually downloading the update, none of them worked. I had [...] read more
After some trouble with my OS (Windows 8.1 Professional N), i've decide to run the good old SFC /scannow, which found and repair some corrupted file. The CBS log report: 2019-10-05 06:52:37, Info CSI 00000b2e [SR] Repairing 1 components 2019-10-05 06:52:37, Info CSI 00000b2f [SR] Beginning Verify and Repair transaction [...] read more
I searched on the web and I am trying to follow guides on how to install .NET 3.5 on an offline machine. Steps that I followed: 1. Download official Windows 10 .iso 2. Mount it on D: drive File explorer which shows mounted Windows 10 3. Run dism /online /enable-feature [...] read more
I have been having some issues with accessing websites lately. On random websites my web browsers is either giving met the err_connection_reset error or an SNI error. To fix this i tried doing the DISM repair image thing. When running DISM.exe /Online /Cleanup-image /Scanhealth I get: Deployment Image Servicing and [...] read more
Having problems installing RSAT, which led me to running scf /scannow, and it reporting found corrupt files. So I'm runnning Dism /Online /Cleanup-Image /RestoreHealth which complained ...source files could not be found ... Use the "Source" option to specify the location.... Other posts cite this command to repair after you [...] read more
I have a windows 10 laptop that whenever I open the start menu or edge, the windows will start flashing like another window is requesting focus, and then it will get focus back and I am unable to type as it loses and regains focus. I have tried doing an [...] read more
As with all previous editions of Windows, I've copied the sources folder from the ISO to a local "C:\Media\sources" folder. I've also set the SourcePath in the registry in a couple places in HKLM. However, when I try to turn on windows features, the wizard wants to go out to [...] read more
I'm running dism to try to fix my Windows 10 x64 laptop. C:\WINDOWS\system32>dism.exe /online /cleanup-image /restorehealth I'm getting the following error: Deployment Image Servicing and Management tool Version: 10.0.10586.0 Image Version: 10.0.10586.0 [==========================100.0%==========================] Error: 0x800f081f The source files could not be found. Use the "Source" option to specify the location [...] read more
After running sfc /scannow in cmd, I get the error message : " > Windows Resource Protection found corrupt files but was unable to fix some of > them." Looking at the details in the log, this set of four lines kept appearing. > 2015-12-12 11:58:26, Info CSI 00003d48 [SR] [...] read more
My initial problem is that since I upgraded to Windows 10 computer won't resume after a hybrid shutdown or hibernation, as I explained in more detail here: Windows 10 won't shut down properly on ASUS N56V. Following some suggestions given on other threads or forums, I have run sfc /scannow, [...] read more
I had problems with my PC and I downloaded the ISO file for Win 8.1, because DISM wasn't working. Then I realized that I don't have install.wim file and I converted the install.esd file to install.wim(with ESDfileconverter) and copied it to the ISO and now in sources folder(on the ISO) [...] read more
I'm using Windows 8.1 x64, build 6.3.9600.17031, using the Command Prompt with administrator privileges. sfc /scannow returns: ...found corrupt files but was unable to fix some of them. and dism /online /cleanup-image /restorehealth returns: Error: 0x800f0906 The source files could not be downloaded. (and the Windows Update Service is not [...] read more
I know this has been covered a little in previous questions, but I still can't pinpoint what is wrong or what is preventing the 8.1 update. First time on the forum, so please correct me if I'm in the wrong place. Here is my a copy of my superr.log. It [...] read more
This problem is on Windows 10 Pro. I know this question has been posed lots of times in lots of places, but I now need to ask for help on this while I still have a few tufts of hair left. I have been getting random BSODs recently, and after [...] read more
I did not have enough rep to answer or comment on the original question, but I wanted to contribute my findings. See Can't install .net 3.5 on Windows 10 for the original question. I received a warning similar to the one below, although the error code might have been different. [...] read more