Windows 10 Update 13/01/2023

After the latest windows update on Friday 13/01, Docker stopped working so I had to reinstall it, but when installing Docker I’m getting the following error.

Component CommunityInstaller.EnableFeaturesAction failed: Not found
at CommunityInstaller.InstallWorkflow.d__30.MoveNext()
— End of stack trace from previous location where exception was thrown —
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at CommunityInstaller.InstallWorkflow.d__24.MoveNext()

Not sure how to proceed, any suggestions?

I had the same issue and steps below helped:

  1. sc config winmgmt start=disabled
  2. net stop winmgmt
  3. Winmgmt /salvagerepository %windir%\System32\wbem
  4. Winmgmt /resetrepository %windir%\System32\wbem
  5. sc config winmgmt start=auto
  6. Get-NetIPInterface (In my case this command didn’t worked)

Source: Stackoverflow

1 Like