dism capture image error 1062 the service has not been started

Joe 0 Reputation points
2023-08-26T17:37:56.6866667+00:00

Hello,

i this issue while using DISM via winPE

Error 1062 the service has not been started and does not move more than 1.0%

Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
12,075 questions
{count} votes

1 answer

Sort by: Most helpful
  1. S.Sengupta 22,821 Reputation points MVP
    2023-08-27T00:38:07.9566667+00:00

    The System File Checker (SFC) tool can help identify and repair corrupted or missing system files that could be causing the problem.

    Run the following command in an elevated Command Prompt:

    sfc /scannow

    Use DISM Repair Command: Sometimes, running a repair command on the system image itself can help resolve DISM-related issues. Run the following command:

    DISM /Online /Cleanup-Image /RestoreHealth

    Ensure that you are using the correct syntax for the DISM command. The syntax for capturing an image with DISM looks like this:

    DISM /Capture-Image /ImageFile:"PathToImage.wim" /CaptureDir:"SourceDirectory" /Name:"ImageName" /Description:"ImageDescription"

    Make sure you replace the placeholders with actual paths and names.

    If the source directory you're trying to capture contains corrupt files or file system issues, it might cause DISM to fail. Run a file system check on the source directory using the following command:

    chkdsk /f "SourceDirectory"

    Replace "SourceDirectory" with the actual path.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.