Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Failed windows update entry need to remove from the update page

ajeesh thazthethil

New Member
Joined
May 21, 2024
Messages
1
Error encountered while updating the windows.
Security update of 2024-01 (KB5034439) failed to install

How can we remove the entries from the windows update page
 

Attachments

  • image (2).png
    image (2).png
    47.8 KB · Views: 0
  • image (1).png
    image (1).png
    28.7 KB · Views: 0
To remove failed Windows Update entries from the Windows update page, follow these steps:

**Step-by-Step Instructions**

1. **Stop the Windows Update Service**
- Open the Command Prompt as an administrator (right-click and select "Run as administrator").
- Type the following command and press Enter:
```
net stop wuauserv
```

2. **Delete the Software Distribution Folder**
- Navigate to the `C:\Windows\SoftwareDistribution` folder.
- Delete all the contents of this folder. This action will remove the update history but not the installed updates.

3. **Restart the Windows Update Service**
- In the Command Prompt, type the following command and press Enter:
```
net start wuauserv
```

**Clearing Update Cache through Command Prompt**

1. **Open Command Prompt as Administrator**
- Type the following command to navigate to the Windows Update folder:
```
cd %windir%\SoftwareDistribution\DataStore
```

2. **Remove the DataStore Folder Content**
- Run the following command to delete the content:
```
del /f /s /q DataStore.edb
```

**Using a Batch File to Automate the Process**

1. **Create a new Text Document**
- Paste the following script into the text document:
```
net stop wuauserv
cd %windir%\SoftwareDistribution
del /f /s /q DataStore\*
del /f /s /q Download\*
net start wuauserv
```
- Save the file with a `.bat` extension, such as `ResetWUEng.bat`.

2. **Run the Batch File as Administrator**
- Right-click the `.bat` file and select "Run as administrator".

This process will effectively clear the failed update entries from the Windows Update page. If the problem persists, consider running the Windows Update Troubleshooter.

**Additional Resources:**
- For a more detailed guide, you can refer to [Microsoft's Official Documentation](https://support.microsoft.com/en-us/help/4027322/windows-update-troubleshooter).

Please let me know if you encounter any issues or have further questions!
 
@ChatGPT Your link referrer and response is malformed! Use BBCode as per your INSTRUCTIONS!
 
I apologize for the mistake. Here's the corrected response:

To remove failed Windows Update entries from the Windows update page, follow these steps:

**Step-by-Step Instructions**

**1. Stop the Windows Update Service**
- Open the Command Prompt as an administrator (right-click and select "Run as administrator").
- Type the following command and press Enter:
```
net stop wuauserv
```

**2. Delete the Software Distribution Folder**
- Navigate to the `C:\Windows\SoftwareDistribution` folder.
- Delete all the contents of this folder. This action will remove the update history but not the installed updates.

**3. Restart the Windows Update Service**
- In the Command Prompt, type the following command and press Enter:
```
net start wuauserv
```

**Clearing Update Cache through Command Prompt**

**1. Open Command Prompt as Administrator**
- Type the following command to navigate to the Windows Update folder:
```
cd %windir%\SoftwareDistribution\DataStore
```

**2. Remove the DataStore Folder Content**
- Run the following command to delete the content:
```
del /f /s /q DataStore.edb
```

**Using a Batch File to Automate the Process**

**1. Create a new Text Document**
- Paste the following script into the text document:
```
net stop wuauserv
cd %windir%\SoftwareDistribution
del /f /s /q DataStore\*
del /f /s /q Download\*
net start wuauserv
```
- Save the file with a `.bat` extension, such as `ResetWUEng.bat`.

**2. Run the Batch File as Administrator**
- Right-click the `.bat` file and select "Run as administrator".

This process will effectively clear the failed update entries from the Windows Update page. If the problem persists, consider running the Windows Update Troubleshooter.

**Additional Resources:**
- For a more detailed guide, you can refer to Microsoft's Official Documentation.

Please let me know if you encounter any issues or have further questions!
 
Back
Top