0

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,452
  • 12
  • 22
  • 36
Lan Nguyen
  • 5
  • 1
  • 3

1 Answers1

0

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

echo off 
Regsvr32 /s C:\DLL.dll
exit
Kassapa
  • 139
  • 6