RegisterTypeLib

[DllImport("oleaut32.dll", CharSet = CharSet.Unicode, PreserveSig = false)]
public static extern void RegisterTypeLib(
   ITypeLib ptlib,
   string szFullPath,
   string szHelpDir
);

Microsoft documentation: Link

Last updated