Reverse CreateObject in VBScript

I have an old vbscript that runs a command, foo = CreateObject (xy). I want to run this script on another computer (which it does not start btw now), but I do not know which dll I have to register or what else I have to do to run the CreateObject command.

How can I calculate which dll I need to copy to a new computer and I need to register them, what else needs to be done?

Or maybe they are OCX or something like that?

Greetings.

+3
source share
1 answer

You should start looking for your registry for your key HKEY_CLASSES_ROOT\x.y\CLSID.

Using {GUID}go to HKEY_CLASSES_ROOT\CLSID\{GUID}\InprocServer32key

+6
source

Source: https://habr.com/ru/post/1725041/


All Articles