function IsDCOMInstalled: Boolean; var OLE32: HModule; begin Result := not (IsWin95 or IsWin95OSR2); ifnot Result then begin OLE32 := LoadLibrary(COLE32DLL); if OLE32 > 0then try Result := GetProcAddress(OLE32, PChar('CoCreateInstanceEx')) <> nil; finally FreeLibrary(OLE32); end; end; end; Взято с Delphi Knowledge Base http://www.baltsoft.com/