I am trying to install a virtual device driver package inside a Windows Container based on windows/server:ltsc2022
. It looks like the driver installer tool uses setupapi
. The installation fails inside the container, and I found these messages in C:\Windows\INF\setupapi.dev.log
:
!!! sto: Failed to call to import driver package. Error = 0xE0000223 (0x32) sto: {Setup Import Driver Package - exit (0xe0000223)} 10:57:41.776 !!! ndv: Driver package import failed for device.
Search for this error code comes short on microsoft.com, and the only reference I can find is another SO answer, where it is called NoConfigMgrServices
, which I am assuming means some Windows component needs to be installed and enabled inside the container.
What component is it?