Error in Hyper-V 2019 - C:\Windows\System32\ru-RU\sconfig.vbs (1213, 5) (null): 0x80041013

Игорь Куринной 1 Reputation point
2022-08-01T09:34:12.473+00:00

Hello everyone. I ran into a problem. Windows Admin Center has stopped functioning, errors start pouring in when logging in to the server:

(1) RemoteException: The "DNSHostName" property for this object cannot be found. Make sure it exists. (2) RemoteException: The "Name" property for this object cannot be found. Make sure it exists. (3) RemoteException: Exception when calling "GetHostEntry" with "1" arguments: "The value cannot be undefined. Parameter name: address" (4) RemoteException: The "AddressList" property for this object cannot be found. Make sure it exists. (5) RemoteException: The "HostName" property for this object cannot be found. Make sure it exists. (6) RemoteException: Provider loading failed (7) RemoteException: Provider loading failed (8) RemoteException: The "SystemFamily" property for this object cannot be found. Make sure it exists. (9) RemoteException: The "SystemSKUNumber" property for this object cannot be found. Make sure it exists. (10) RemoteException: The "Fqdn" property for this object cannot be found. Make sure it exists.

and there are not many points as it was before.and on the hypervisor itself, writes an error in the terminal C:\Windows\System32\ru-RU\sconfig.vbs (1213, 5) (null): 0x80041013

tell me what can be done?
DISM /online and sfc tried, finds nothing.

Windows for business | Windows Client for IT Pros | Storage high availability | Virtualization and Hyper-V
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Limitless Technology 44,766 Reputation points
    2022-08-03T16:06:16.827+00:00

    Hello,

    When DISM or SFC doesn't work, there are two other options for the error 0x80041013:

    -Reintall the feature on the affected machine:
    1- DISM /Online /Disable-Feature /FeatureName:MicrosoftWindowsPowerShell

    2- DISM /Online /Enable-Feature /FeatureName:MicrosoftWindowsPowerShell

    3- reboot the server

    4- running again sconfig

    WMI Provider issues:

    • Repair the WMI repository on the affected machine:
    1. Disable and stop the WMI service.

    sc config winmgmt start= disabled
    net stop winmgmt

    1. Run the following commands.

    Winmgmt /salvagerepository C:\WINDOWS\System32\wbem
    Winmgmt /resetrepository C:\WINDOWS\System32\wbem

    1. Re-enable the WMI service and then reboot the server to see how it goes.

    sc config winmgmt start= auto

    If the problem remains, then try the following steps to rebuild the repository:

    1. Disable and stop the WMI service.

    sc config winmgmt start= disabled (note that there is a blank between '=' and 'disabled')
    net stop winmgmt

    1. Rename the repository folder (located at C:\WINDOWS\System32\wbem\repository) to repository.old.
    2. Re-enable the WMI service.

    sc config winmgmt start= auto

    1. Reboot the server to see if the problem remains.

    Hope this helps with your query,
    --If the reply is helpful, please Upvote and Accept as answer--


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.