inproc: the COM server is loaded into the client process; in this case accessing the COM methods is as simple as using an interface pointer when the client and the in-proc server are in the same thread
local: the COM server and the client are loaded in different processes on the same machine; communication is achieved with the use of proxies and stubs via Lightweight RPC
remote: the COM server and the client are loaded in different processes on different machines; communication is achieved with the use of proxies and stubs via RPC
In order for the COM Library to be able to locate and instantiate the COM objects correctly, different information is stored in the Windows Registry. The most important information is located under the keys CLSID, TypeLib, Interface and AppID from HKEY_CLASSES_ROOT. The images below show examples for IIS.
Read more: Greg's Cool [Insert Clever Name] of the Day
Read more: Marius Bancila’s Blog