I have found the error. It has something to do with the registration of jacob.dll.
The next version of my bot will fix it and possibly make the whole library thingy itself.
Troubleshooting the jacob error:
(easiest solution: wait for next update)
Resoltion for problem 1 (CLSID is simply not registered):
Open up command line and execute this command:
Code:
C:\Windows\Microsoft.NET\Framework\v2.0.50727\RegAsm.exe /verbose /nologo /codebase C:\PATH\jacob-1.17-M2-x86.dll
important: change paths to your paths and use the right .dll version
Resoltion for problem 2 (CLSID wrong bit version)
1.Open ip command line and execute this commands:
Code:
C:\Windows\Microsoft.NET\Framework\v2.0.50727\RegAsm.exe /unregister C:\PATH\jacob-1.17-M2-x86.dll
register the "right" one:
Code:
C:\Windows\Microsoft.NET\Framework\v2.0.50727\RegAsm.exe /verbose /nologo /codebase C:\PATH\jacob-1.17-M2-x86.dll
important: change paths to your paths and use the right .dll version
~RGrand