"RPT" <> wrote in message
news:19446E24-C08C-4424-9A78-
....
>I found this site while searching before posting this a s question.
....
> used the KB article 81342
> http://support.microsoft.com/kb/813442
>
> but, returns error:-
>
> LoadLibrary("sccbase.dll") failed.
> GetLastError returns 0x0000007e
Then why not say so first? ; ]
Apparently for your OS that should work. E.g. it does have an entrypoint
for DllRegisterServer in that module:
http://support.microsoft.com/dllhelp...294&l=55&det=1
In that case what I would do is use DependencyWalker's Profiler feature
to trace the calls that that command is making. Somewhere in it you may
get a clue about what is causing that return code. E.g. the real failure may
be as a result of a problem with another dependent module which the article
hasn't mentioned.
You could also try the tack of trying to get an interpretation of the return code
but without any other context I think that wouldn't be likely to help much.
Hmm... in fact it may be a very good clue for what you could expect
DependencyWalker to show you. Converting the hex to decimal:
<example>
>net helpmsg 126
The specified module could not be found.
</example>
In that case you may also get sufficient supplementary diagnostics by
running ProcMon while executing that regsvr32 command again.
Good luck
Robert
---