I need to know how to locate the executable invoked by wscript.createobject()
.
I inherited a mass of old code that I'm trying to untangle. A VBS file invokes a custom executable with this line:
Set TGen = wscript.createobject("VbTextGen.TextGen")
I would like to find that executable but have not been able to. I understand the argument is server.typename but that doesn't tell me much. I've looked in the directory containing the vbscript file, the path, and some system directories
Set TGen = wscript.createobject("VbTextGen.TextGen")
is all I have to go on.
Hoping someone can tell me where to find this thing.