1

I have a simple C# code that depends on AutoItX3.dll to run. I've successfully run it in my computer without any issue. However, when tested on another PC, it only runs when I download and install AutoIt from their website. I know for a fact that I have to register the dll in order for it to work but I have no idea how to embed the dll registering process in the C# program.

user4157124
  • 2,809
  • 13
  • 27
  • 42
Lan Nguyen
  • 25
  • 1
  • 4

1 Answers1

1

if its COM Dlls you are using you can write a com script to register dlls

echo off 
Regsvr32 /s C:\DLL.dll
exit
Kasup Sri
  • 159
  • 6