<aside> ℹ️ The Microsoft Component Object Model (COM) is a platform-independent, distributed, object-oriented system for creating binary software components that can interact. COM is the foundation technology for Microsoft's OLE (compound documents), ActiveX (Internet-enabled components), as well as others.
</aside>
DCOM is an extension of COM (Component Object Model), which allows applications to instantiate and access the properties and methods of COM objects on a remote computer just like objects on the local machine using the DCERPC-based DCOM protocol. Information about the identity, the implementation and the configuration of every COM (and DCOM) object is stored in the registry, and associated with a few important identifiers:
InProcServer32
subkey in case of a dll-based object, and the LocalServer32
key in case of an exe.System.AppDomainManager
", for example, is much easier on the eyes than a GUID). ProgIDs are not guaranteed to be unique, and unlike CLSID, not every class is associated with a ProgID.<aside> ⚠️ To make a COM object accessible by DCOM, an AppID must be associated with the CLSID of the class and appropriate permissions need to be given to the AppID. A COM object without an associated AppID cannot be directly accessed from a remote machine.
</aside>
The instantiation of a remote DCOM object behaves as follows:
DCOMLaunch
service creates an instance of the requested class, most commonly by running the executable of the LocalServer32
subkey, or by creating a DllHost process to host a dll referenced by the InProcServer32
subkey.DCOM is integrated into the Windows OS and allows for many Windows services communicate – like Microsoft Management Console (MMC) or Microsoft Office products.
The MMC Application Class (MMC20.Application) COM object allows you to script components of MMC snap-in operations. There is a method named ExecuteShellCommand
under Document.ActiveView
: