SetupDiCallClassInstaller

[DllImport("setupapi.dll", SetLastError = true)]
public static extern bool SetupDiCallClassInstaller(
   uint InstallFunction,
   IntPtr DeviceInfoSet,
   ref DeviceInterfaceData InterfaceData
);

Microsoft documentation: Link

Last updated