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 instance of it?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can register that .NET dll with regasm utility by specifying
/codebaseparameter. This parameter is not encouraged to use with unsigned assemblies but it works when you can not put your assembly into GAC.Please note that you should not change your .dll’s path after this operation since it inserts this path into the Windows registry.