I wrote a DLL in .NET and I want to access it in VBScript. I don\'t want to add it to the assembly directory.
Is there a way to point too the DLL and create an inst
Not directly. You'll need a COM Callable Wrapper to any .NET library you'll calling from COM (and hence, VBScript). Therefore, you should either directly create a CCW to the DLL or you can create a CCW for a proxy DLL which provides generic methods to load a .NET DLL and provide methods for you that call the actual methods on the component and return the result. It's really not clean at all. So, in general, the answer is no.