Hello Frank Doyle,
The error “Error loading type library/DLL” is not related to Windows for Business or Windows 365 Enterprise. It is a COM/ActiveX registration issue that occurs when an application tries to load a type library (.tlb) or DLL that is either missing, corrupted, or not properly registered in the system registry. This is typically seen with legacy applications, Office add-ins, or custom software that depends on COM components.
The first step is to identify which DLL or type library is failing. Usually, the application log or Event Viewer will show the specific file name or CLSID. Once you know the component, you can re-register it using regsvr32 <path to dll>. For example, if the error points to mscomctl.ocx, you would run regsvr32 C:\Windows\SysWOW64\mscomctl.ocx from an elevated command prompt. If it is a type library (.tlb), you may need to reinstall the application or copy the missing file back into C:\Windows\System32 or C:\Windows\SysWOW64 depending on whether it is 32-bit or 64-bit.
If the error persists even after re-registering, check the registry under HKEY_CLASSES_ROOT\TypeLib for the CLSID mentioned in the error. Sometimes stale or broken entries remain after an uninstall, and cleaning those out before reinstalling the application resolves the issue. Also confirm that the application architecture matches the DLL (32-bit vs 64-bit mismatch can trigger this error).
If you can provide the exact DLL or type library name mentioned in the error, I can give you the precise registration command or confirm if a reinstall is required.
I hope you've found something useful here. If it helps you get more insight into the issue, it's appreciated to accept the answer. Should you have more questions, feel free to leave a message. Have a nice day!
Domic Vo.