ole:GetClassObject class Not Registered

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
crokett
Newbie
Newbie
Posts: 3
Joined: Thu Jan 22, 2009 11:05 am

ole:GetClassObject class Not Registered

Post by crokett »

I am trying to run a Windows app my company uses in-house in Wine. It installs ok but when I run it I get this:

Code: Select all

err:ole:CoGetClassObject class {96749377-3391-11d2-9ee3-00c04f797396} not registered
err:ole:CoGetClassObject class {96749377-3391-11d2-9ee3-00c04f797396} not registered
err:ole:create_server class {96749377-3391-11d2-9ee3-00c04f797396} not registered
err:ole:CoGetClassObject no class object {96749377-3391-11d2-9ee3-00c04f797396} could be created for context 0x7
err:win:WINPOS_GetWinOffset bad hwndFrom = 0xfffffffd

Is there anything I can do? Is there a .dll or something that needs to be applied?
James McKenzie

ole:GetClassObject class Not Registered

Post by James McKenzie »

crokett wrote:
I am trying to run a Windows app my company uses in-house in Wine. It installs ok but when I run it I get this:


Code:

err:ole:CoGetClassObject class {96749377-3391-11d2-9ee3-00c04f797396} not registered
err:ole:CoGetClassObject class {96749377-3391-11d2-9ee3-00c04f797396} not registered
err:ole:create_server class {96749377-3391-11d2-9ee3-00c04f797396} not registered
err:ole:CoGetClassObject no class object {96749377-3391-11d2-9ee3-00c04f797396} could be created for context 0x7
err:win:WINPOS_GetWinOffset bad hwndFrom = 0xfffffffd


Have you run winetricks allfonts?

According to:

http://forum.winehq.org/viewtopic.php?t=919

This may be caused by a missing font.

James McKenzie
qwertymn
Level 4
Level 4
Posts: 236
Joined: Thu Mar 27, 2008 3:42 am

Post by qwertymn »

e rr:ole:CoGetClassObject class {96749377-3391-11d2-9ee3-00c04f797396} not registered
err:ole:CoGetClassObject class {96749377-3391-11d2-9ee3-00c04f797396} not registered
err:ole:create_server class {96749377-3391-11d2-9ee3-00c04f797396} not registered

Looks like that belongs to missing dll sapi.dll (MS speech). You could try to get it from a windowspartition, and register it (regsvr32.exe sapi.dll). I'm pretty sure there must be a download from Microsoft http://www.microsoft.com/downloads/deta ... laylang=en that installs this stuff but i'm not sure what package it is.
Locked