When is ieaksie.dll registered as InProcServer32 for InternetExplorer.Application?

0

One of my guys had a problem when instantiating InternetExplorer.Application from VB6 and VBScript. It turned out that he (but no one else on the team) had the following entry in the registry apart from the expected (and working) LocalServer32 entry which creates an instance out-of-process using iexplore.exe:

[HKEY_CLASSES_ROOT\CLSID{0002DF01-0000-0000-C000-000000000046}\InProcServer32] @="C:\WINDOWS\system32\ieaksie.dll"

This is with XP SP3 and IE8 btw.

It's not really clear why this fails (CreateObject("InternetExplorer.Application") => hr = 0x80040111 ClassFactory cannot supply requested class), but the code expected the IE instance to be created as a new process.

Does anyone know what ieaksie does, when it's installed and when it creates the registry entry that seems to cause problems?

Googling didn't help me much...

internet-explorer
com
vbscript
registry
asked on Stack Overflow Sep 23, 2009 by Pelle • edited Sep 28, 2009 by Pelle

2 Answers

0

This page (whose trustworthyness I can't really judge) says this is an "Internet Explorer Snap-in Extension to Group Policy", so it looks like an extension to some management tool on the machine.

My HKEY_CLASSES_ROOT\CLSID\ is empty, as I suspect are yours, so the presence of this path there would forward any COM creation requests for "InternetExplorer.Application" to this snap-in DLL. That seems weird.

I'd suspect either butter-fingers on behalf of your colleague, some kind of trojan or a Microsoft update gone wrong.

That said, I don't really understand how COM manages to locate the object to create without an InprocServer32 entry there. I wonder if it's hardcoded in the OS somehow?

answered on Stack Overflow Sep 25, 2009 by Kim Gräsman
0

The dll is provided by Microsoft, it's truth.

answered on Stack Overflow Sep 27, 2009 by xie renhui

User contributions licensed under CC BY-SA 3.0