Skip to content

Commit 34db80a

Browse files
authored
Update 2025-03-20-fixing-component-store-win11-24h2.md
1 parent cbbcd91 commit 34db80a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ image:
1212

1313
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.
1414

15-
```ps1
15+
```PowerShell
1616
PS C:\> Dism.exe /Online /Cleanup-Image /AnalyzeComponentStore
1717
1818
Deployment Image Servicing and Management tool
@@ -45,11 +45,11 @@ The operation completed successfully.
4545
Remove the problematic package by executing (replace the package name if it differs on your system):
4646

4747

48-
```ps1
48+
```PowerShell
4949
dism /online /remove-package /packagename:Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.1742.1.10
5050
```
5151

52-
```ps1
52+
```PowerShell
5353
PS C:\> dism /online /remove-package /packagename:Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.1742.1.10
5454
5555
Deployment Image Servicing and Management tool
@@ -73,7 +73,7 @@ The operation completed successfully.
7373

7474
After removal, run the cleanup command to finalize the process:
7575

76-
```ps1
76+
```PowerShell
7777
PS C:\Users\AzimsTech> dism /online /cleanup-image /startcomponentcleanup
7878
7979
Deployment Image Servicing and Management tool
@@ -89,7 +89,7 @@ The operation completed successfully.
8989

9090
Re-run the analyze command to ensure all reclaimable packages are cleared:
9191

92-
```ps1
92+
```PowerShell
9393
PS C:\> Dism.exe /Online /Cleanup-Image /AnalyzeComponentStore
9494
9595
Deployment Image Servicing and Management tool

0 commit comments

Comments
 (0)