Windows 0xc8000247 update error fixed

  • This is a common problem that can occur when either the device is not connected to the computer and therefore cannot be found by the software.
  • It turns out that several different scenarios trigger the Windows Update error 0xc8000247.
  • In this article you will find some troubleshooting guides to help you identify and solve the problem that ultimately caused the error.

 

Introducing the Quick Solution to Fixed Windows Update Error 0xC8000247

Restart your computer: The first step to fix the Windows 0xc8000247 update error is to simply restart your computer. Sometimes, a simple reboot can resolve temporary software glitches and help the update process run smoothly.

Understanding Windows Update Error 0xc8000247

If you’re encountering Windows Update Error 0xC8000247, we have a quick solution for you. This error can occur when there is a problem with the Automatic Update Service, corruption in the Windows Update component, or issues with the Intel Rapid Storage Technology Driver. Here’s what you can do to fix it:

1. Open the Windows Control Panel and navigate to the “Programs” section.
2. Uninstall any Intel Rapid Storage Technology Driver that you have installed.
3. Download the latest version of the driver from the Intel website and install it on your computer.
4. Restart your machine and try installing the updates again.

This method has been successful for many users experiencing the 0xC8000247 error code. If you’re still encountering the error, there may be other factors at play, and we recommend seeking further troubleshooting guides or contacting Microsoft support for assistance.

The 0xc8000247 update error in Windows can be resolved by performing a clean boot and running the Windows Update Troubleshooter.

Methods to troubleshoot and fix Windows Update Error 0xc8000247

  1. Press Windows key + I to open the Settings app.
  2. Click on Update & Security.
  3. Choose Troubleshoot from the left-hand side menu.
  4. Select Windows Update under the Get up and running section.
    Choose Troubleshoot from the left-hand side menu.
Select Windows Update under the Get up and running section.
  5. Click on the Run the troubleshooter button.
  6. Follow the on-screen instructions to complete the troubleshooting process.
    Click on the Run the troubleshooter button.
Follow the on-screen instructions to complete the troubleshooting process.

Method 2: Reset Windows Update Components

  1. Open Command Prompt as an administrator.
  2. Type the following commands one by one and press Enter after each:
    Open Command Prompt as an administrator.
Type the following commands one by one and press Enter after each:
    • net stop wuauserv
    • net stop cryptSvc
    • net stop bits
    • net stop msiserver
      net stop bits
net stop msiserver
  3. Type the following commands to rename the SoftwareDistribution and Catroot2 folders:
    • ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
    • ren C:\Windows\System32\catroot2 Catroot2.old
      ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 Catroot2.old
  4. Type the following commands to restart the services:
    • net start wuauserv
    • net start cryptSvc
    • net start bits
    • net start msiserver
      net start bits
net start msiserver

Method 3: Disable Antivirus and Firewall Temporarily

  1. Open your Antivirus software.
  2. Look for an option to disable or turn off the antivirus.
    Open your Antivirus software.
Look for an option to disable or turn off the antivirus.
  3. Disable the antivirus temporarily.
  4. Open the Windows Security app.
  5. Click on Firewall & Network Protection.
  6. Select your currently active network.
    Click on Firewall & Network Protection.
Select your currently active network.
  7. Toggle the Firewall option to Off.

Method 4: Perform a Clean Boot

  1. Press Windows key + R to open the Run dialog box.
  2. Type msconfig and press Enter.
  3. In the System Configuration window, go to the Services tab.
  4. Check the box that says Hide all Microsoft services.
    In the System Configuration window, go to the Services tab.
Check the box that says Hide all Microsoft services.
  5. Click on Disable all to disable all non-Microsoft services.
  6. Go to the Startup tab.
    Click on Disable all to disable all non-Microsoft services.
Go to the Startup tab.
  7. Click on Open Task Manager.
  8. In the Task Manager window, go to the Startup tab.
  9. Disable all the startup items by right-clicking on each and selecting Disable.
  10. Close Task Manager and go back to the System Configuration window.
  11. Click on Apply and then click on OK.
  12. Restart your computer.
    Click on Apply and then click on OK.
Restart your computer.

Updating IRST Driver and troubleshooting third-party applications

To update the IRST driver and troubleshoot third-party applications on Windows, follow these quick steps:

1. Download the latest IRST driver from the manufacturer’s website.
2. Open the Windows Control Panel and navigate to “Device Manager.”
3. Expand the “IDE ATA/ATAPI controllers” section and right-click on the IRST driver.
4. Select “Update driver” and choose “Browse my computer for drivers.”
5. Locate and select the downloaded IRST driver file.
6. Follow the on-screen instructions to complete the installation.
7. Restart your computer to apply the changes.

If you encounter Error Code 0xC8000247 during Windows Update, try these troubleshooting methods:

1. Run the Windows Update troubleshooter:
– Press Windows Key + X and select “Control Panel.”
– Search for “troubleshoot” and select “Troubleshooting.”
– Click on “Fix problems with Windows Update.”

2. Reset the Windows Update components:
– Open a Command Prompt as an administrator.
– Type the following commands, pressing Enter after each:
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
net start wuauserv
net start cryptSvc
net start bits
net start msiserver

3. Disable any third-party antivirus software temporarily, as it may interfere with the update process.

python
import subprocess

def fix_windows_update_error():
try:
# Open command prompt with admin privileges
subprocess.run(['cmd', '/k', 'net', 'stop', 'wuauserv'], shell=True, check=True)
subprocess.run(['cmd', '/k', 'net', 'stop', 'cryptSvc'], shell=True, check=True)
subprocess.run(['cmd', '/k', 'net', 'stop', 'bits'], shell=True, check=True)
subprocess.run(['cmd', '/k', 'net', 'stop', 'msiserver'], shell=True, check=True)

# Clear Windows Update cache
subprocess.run(['cmd', '/k', 'Del', '/F', '/Q', '%systemroot%\\SoftwareDistribution\\*'], shell=True, check=True)

# Restart the stopped services
subprocess.run(['cmd', '/k', 'net', 'start', 'wuauserv'], shell=True, check=True)
subprocess.run(['cmd', '/k', 'net', 'start', 'cryptSvc'], shell=True, check=True)
subprocess.run(['cmd', '/k', 'net', 'start', 'bits'], shell=True, check=True)
subprocess.run(['cmd', '/k', 'net', 'start', 'msiserver'], shell=True, check=True)

print("Windows update error (0xc8000247) has been fixed.")
except subprocess.CalledProcessError as e:
print("An error occurred while trying to fix the Windows update error:", e)

# Usage
fix_windows_update_error()

Please note that this code is a basic example and may not cover all scenarios or guarantee a fix for the specific error. It attempts to stop relevant services, clear the Windows Update cache, and restart the services to resolve the issue. It’s always recommended to consult official documentation or seek professional assistance when dealing with system errors.

Resetting Windows Update components and running DISM and SFC scans

If you’re experiencing the Windows Update Error 0xC8000247, there are a few steps you can take to resolve the issue.

First, reset the Windows Update components. To do this, follow these steps:

1. Press the Windows key + X and select “Command Prompt (Admin)”.
2. Type “net stop wuauserv” and press Enter.
3. Type “net stop cryptSvc” and press Enter.
4. Type “net stop bits” and press Enter.
5. Type “net stop msiserver” and press Enter.
6. Type “ren C:\Windows\SoftwareDistribution SoftwareDistribution.old” and press Enter.
7. Type “ren C:\Windows\System32\catroot2 catroot2.old” and press Enter.
8. Type “net start wuauserv” and press Enter.
9. Type “net start cryptSvc” and press Enter.
10. Type “net start bits” and press Enter.
11. Type “net start msiserver” and press Enter.

Next, run DISM and SFC scans to repair any corrupted system files. Follow these steps:

1. Open Command Prompt as an administrator.
2. Type “DISM.exe /Online /Cleanup-image /Restorehealth” and press Enter.
3. Once the scan is complete, type “sfc /scannow” and press Enter.

These steps should help resolve the Windows Update Error 0xC8000247 and allow you to install updates smoothly.

Additional steps to fix Windows Update errors

1. Restart the Windows Update Service:
– Press Windows key + R, type “services.msc” and hit Enter.
– Find the “Windows Update” service, right-click, and select “Restart.”

2. Run the Windows Update Troubleshooter:
– Press Windows key + I to open Settings.
– Go to “Update & Security” and click on “Troubleshoot.”
– Select “Windows Update” and click on “Run the troubleshooter.”

3. Reset the Windows Update components:
– Open Command Prompt as administrator.
– Type the following commands in order:
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
net start wuauserv
net start cryptSvc
net start bits
net start msiserver

4. Disable any third-party antivirus software temporarily:
– Check if your antivirus software is blocking Windows Update.
– Temporarily disable it and try updating again.

If the error persists, consider seeking further assistance from Microsoft Support or referring to their troubleshooting guides.

Website | + posts

Mark Ginter is a tech blogger with a passion for all things gadgets and gizmos. A self-proclaimed "geek", Mark has been blogging about technology for over 15 years. His blog, techquack.com, covers a wide range of topics including new product releases, industry news, and tips and tricks for getting the most out of your devices. If you're looking for someone who can keep you up-to-date with all the latest tech news and developments, then be sure to follow him over at Microsoft.