Skip to content

Commit b213650

Browse files
committed
Update 2025-03-20-fixing-component-store-win11-24h2.md
1 parent e4616af commit b213650

File tree

1 file changed

+21
-12
lines changed

1 file changed

+21
-12
lines changed

_posts/2025-03-20-fixing-component-store-win11-24h2.md

+21-12
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
11
---
22
title: Fixing Component Store (WinSxS folder) in Windows 11 24H2
3-
date: 2025-03-20 21:00:00 +0800
4-
categories: [How-to, Software]
5-
tags: [win11] # TAG names should always be lowercase
6-
image:
3+
date: '2025-03-20 21:00:00 +0800'
4+
categories:
5+
- How-to
6+
- Software
7+
tags:
8+
- win11
9+
image: null
10+
description: >-
11+
Get started with Chirpy basics in this comprehensive overview. You will learn
12+
how to install, configure, and use your first Chirpy-based website, as well as
13+
deploy it to a web server.
714
---
815

9-
# Fixing Component Store (WinSxS folder) in Windows 11 24H2
10-
1116
## Problem
1217

13-
After the Windows 11 24H2 update, a bug prevents the cleanup tool from removing two reclaimable packages in the WinSxS folder. Even after running cleanup commands, the “Number of Reclaimable Packages” remains at 2. Microsoft has not yet provided a fix.
18+
After the Windows 11 24H2 update, a bug prevents the cleanup tool from removing two WinSxS packages. Cleanup commands don’t work, and Microsoft hasn’t fixed it yet.
1419

15-
```powershell
20+
```console
1621
PS C:\> Dism.exe /Online /Cleanup-Image /AnalyzeComponentStore
1722

1823
Deployment Image Servicing and Management tool
@@ -45,11 +50,11 @@ The operation completed successfully.
4550
Remove the problematic package by executing (replace the package name if it differs on your system):
4651

4752

48-
```powershell
53+
```console
4954
dism /online /remove-package /packagename:Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.1742.1.10
5055
```
5156

52-
```powershell
57+
```console
5358
PS C:\> dism /online /remove-package /packagename:Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.1742.1.10
5459

5560
Deployment Image Servicing and Management tool
@@ -73,7 +78,11 @@ The operation completed successfully.
7378

7479
After removal, run the cleanup command to finalize the process:
7580

76-
```powershell
81+
```console
82+
PS C:\Users\AzimsTech> dism /online /cleanup-image /startcomponentcleanup
83+
```
84+
85+
```console
7786
PS C:\Users\AzimsTech> dism /online /cleanup-image /startcomponentcleanup
7887

7988
Deployment Image Servicing and Management tool
@@ -89,7 +98,7 @@ The operation completed successfully.
8998

9099
Re-run the analyze command to ensure all reclaimable packages are cleared:
91100

92-
```powershell
101+
```console
93102
PS C:\> Dism.exe /Online /Cleanup-Image /AnalyzeComponentStore
94103

95104
Deployment Image Servicing and Management tool

0 commit comments

Comments
 (0)