Skip to main content

Fix: Error 0x80042302 while attempting to Restore Windows 10 System Image

Users experience the error “0x80042302” when they trying to restore an image of Windows on their PC. The mechanism through which you restore a system image is called System Restore. The full message of the error is:
“The system image restore failed. Error details: A Volume Shadow Copy Service component encountered an unexpected error. Check the Application event log for more information. (0x80042302)”
 
System Restore allows users to restore their state of windows from an image which is saved earlier on. This feature doesn’t require a large amount of space on your computer and is also quite easy to configure. Until now, the restoration process using System Restore is very easy and doesn’t involve technicalities.

This error became more prominent after the 1709 Fall Creators update. System Image Backup (SIB) has become depreciated. This means that Microsoft has stopped the development and support of the feature but it is still available on various PC’s.
Moving on, there a few workarounds for this problem. Do note that workarounds are different from fixes (fixes are where the problem is completely fixed and workarounds present ways through which you can bypass the problem and accomplish the task at hand). We cannot come up with fixes as the service itself is depreciated.

Solution 1: Using a Third-Party Alternative

Since the service itself is depreciated, it is best if you resort to a third-party alternative. What does depreciated mean? It means that the tool is still present in Windows but its development and support is stopped. You will be using the default tool and if any error is induced (like in this case with 1709), you would have to find other alternatives because there isn’t going to be any development in this issue.
You can resort to third-party alternatives which do the task just as well. One such alternative is Macrium Software. You can easily Google it, download it and follow the easy on-screen instructions to get the job done.

Solution 2: Check if Services are Turned On

A reason why you might be experiencing this problem is that your services are turned off. There are various cases where to troubleshoot an issue, your turn your services off. Furthermore, there are some PC optimization software which turn your services off in order to reduce the CPU usage or ‘optimize’ your computer. This solution works for most previous versions of Windows (Pre Fall Creators Update).
  1. Press Windows + R, type “services.msc” in the dialogue box and press Enter.
  2. Once at the services window, check your services and make sure they are not turned off.
  3. One notable service which you should check is “Volume Shadow Copy”. This is the primary process responsible for managing system images. Set the state as automatic and make sure it is turned on.
  1. Also, check if the process “Microsoft Software Shadow Copy Provider” is up and running. Navigate to its properties and set its startup state as automatic and make sure it is running.
  1. In addition to these services, also make sure other services are up and running.

Solution 3: Installing new Windows and Mounting the Image Later (Advanced Users)

This solution is for advanced users who know what they are doing. Follow the instructions step by step and make necessary changing according to your system.
Note: We are assuming file paths and directories here for your ease. Make sure to replace the drives when you are actually executing the solution with the correct ones on your computer.
  1. Disconnect your computer from the Network. This is done to prevent Windows Update from running.
  2. Input the Installation media and install Windows 10. When asked, select the option “I don’t have a product key”. Also, select the option “Custom: Install Windows Only”. This will create all the partitions on your disk (C: EFI Recovery) and through this, you will have a Windows 10 machine to work on.
  3. Log into your account.
  4. Press Windows + E to launch File Explorer. Navigate to Local Disk C, right-click on the empty space and select New > Folder. Name the new folder as “MountedVHDX”.
  5. Create another new folder named as “WindowsImage” in Local Disk C and copy the folder matching from your backups WindowsImage folder.
  6. Now connect an external hard drive with your computer. It should have decent empty space (at least as much space as your SIB. Let’s suppose that the external disk is called “E:\”.
  7. Create a new folder on the hard drive named as “CapturedWIM”.
  8. Press Windows + S, type “PowerShell” in the dialogue box, right-click on the application and select “Run as administrator”. Now execute the following commands:
Mount-WindowsImage -ImagePath fullpathofvhdxindoublequotes -Path c:\MountedVHDX -Index 1
New-WindowsImage -CapturePath C:\MountedVHDX -Name Win10Backup -ImagePath E:\CapturedWIM\sib.wim -Description “Windows 10 Backup” –Verify
Dismount-WindowsImage -Path C:\MountedVHDX -Discard
Note: Insert the full path of the VHDX in the first command listed instead of “fullpathvhdxindoublequotes”.
  1. Restart your Windows after executing the commands listed above.
  2. Now once you are at the login screen, click the power button and further click “Restart” while holding the shift key. This will force your computer to go into recovery mode.
  3. Select the following options:
Troubleshoot > Advanced > Command Prompt
  1. When the command prompt pops up, executing the following commands:
Format c:
Dism /Apply-Image /ImageFile:E:\CapturedWIM\sib.wim /Index:1 /ApplyDir:C:\
  1. Now when you restart your computer, the problem will be solved.

Comments

Popular posts from this blog

How to Fix the ‘Failed to Acquire the VirtualBox COM Object’ Error

Several users are reporting that they are unable to launch VirtualBox. The critical error message that comes up is  “Failed to acquire the VirtualBox COM object. The application will terminate”.  In some cases, the error is also accompanied by a second error message pointing towards the problem. The issue does not seem to be specific to a certain Windows version since it’s confirmed to occur on both Windows 8.1 and Windows 10. Failed to acquire the VirtualBox COM object. The application will now terminate. What is causing the ‘Failed to Acquire the VirtualBox COM Object’ error? We investigated this issue by looking at various user reports and the repair strategies that are commonly deployed successfully in this particular scenario. As it turns out, there are multiple culprits that might end up triggering this issue: VirtualBox is not installed with admin access  – Virtualbox is one of those software products that will require you to install them with a...

How to Format/Indent XML Files in Notepad++

Notepad++ is a free text and source code editor that is mostly used by programmers. It is an advanced alternate version of the default notepad which supports 50 programming, scripting and markup languages. It allows a user to edit codes within multiple tabs in a single window. However, it lacks the formatting for XML files or XML code. Users will find it difficult to edit or read the XML code without the correct format for code. How to Format/Indent XML Files on Notepad++ What is XML File? XML (stands for eXtensible Markup Language) which is a language designed to store and transport data. XML files are just plain text files that can’t do anything on their own. Custom tags are used in XML files to define objects and the data within each object. It defines a set of rules for encoding documents in such a format that both humans and machines could read. XML is similar to HTML but the difference is that HTML defines how data looks, while XML defines what data is. XML Code samp...

Fix: System Found Unauthorized Changes on the Firmware, Operating System or UEFI Drivers

Several users are struggling with the  System found unauthorized changes on the firmware error  at every startup or when trying to take their computer out of hibernation mode. Most affected users report that the issue started occurring after they installed some pending Windows updates. The issue is mostly encountered on Windows 7. The system found unauthorized changes on the firmware, operating system or UEFI drivers. Press [OK] to run the next boot device, or enter directly to BIOS Setup if there are no other boot devices installed. What is causing the System found unauthorized changes on the firmware error We investigated this particular issue by looking at various user reports. This error will occur whenever your system is checking the firmware one some computer hardware parts as part of a new security feature. To be precise, the error is occurring because not all Windows versions will support this new security feature. As it turns out, there are sev...