Online: 1081 online | Members: 0 | Guests: 1081
Wednesday, June 3, 2026
Page Minimap
Reading time: 3 min read
Tagline:HowtoUseDISMCommandinWindows11
There is no translation available.

1. Go to Windows desktop and look for the Start button

How_to_Use_DISM_Command_in_Windows_11_3.jpgHow_to_Use_DISM_Command_in_Windows_11_4.jpg

2. Click the Start button and wait for the Start menu to appear

How_to_Use_DISM_Command_in_Windows_11_5.jpg

3. After the Start menu appears, type CMD and wait for the Start menu to find the Command Prompt app

How_to_Use_DISM_Command_in_Windows_11_6.jpg

4. After it finds it, on the right pane of the Start menu, click on Run as administrator and wait for the Windows UAC prompt window to appear

5. Click YES and wait for the Command Prompt window to appear

How_to_Use_DISM_Command_in_Windows_11_7.jpgHow_to_Use_DISM_Command_in_Windows_11_8.jpg

6. After the Command Prompt window appears, type the following command:
a. DISM /online /cleanup-image /restorehealth

7. Hit the ENTER key

How_to_Use_DISM_Command_in_Windows_11_11.jpg

8. After hitting the ENTER key, DISM will start working according to the given arguments

9. You will be presented with the version of the image version you are running

How_to_Use_DISM_Command_in_Windows_11_12.jpg

10. The following is a breakdown of the DISM process in this article:
     a. /Online → Tells DISM to target the running Windows installation (your current OS), not an offline image.
     b. /Cleanup-Image → Specifies that the command will operate on the Windows image servicing stack (the component store, also known as WinSxS).
     c. /RestoreHealth → Instructs DISM to scan the system for corruption in the Windows image and attempt to repair it automatically.

 

11. What it does in practice:
     a. Scans the component store (WinSxS) for corruption or inconsistencies.
     b. Checks health against known good copies.
     c. Repairs problems by downloading clean files

How_to_Use_DISM_Command_in_Windows_11_13.jpg

12. After a few seconds, a progress bar will appear

How_to_Use_DISM_Command_in_Windows_11_14.jpg

13. Wait till the progress bar hits 100%

How_to_Use_DISM_Command_in_Windows_11_19.jpg

14. After the DISM process is done, you will be presented with the following message:
a. The restore operation completed successfully

How_to_Use_DISM_Command_in_Windows_11_20.jpg