Venom4444 0 Posted August 30, 2010 Hi Can someone please assist i need to make an exe thats build with Autoit Drag and drop enabled. The Software is Drag and Drop enabled but i need to inject reg before I can execute it.. Curently bat file looks like this. regedit /s VBDECO~1.REG regsvr32.exe /s RICHTX32.OCX start /wait VBDECO~1.EXE regsvr32.exe /u /s RICHTX32.OCX exit exit Share this post Link to post Share on other sites
exodius 1 Posted August 30, 2010 Hi Can someone please assist i need to make an exe thats build with Autoit Drag and drop enabled.The Software is Drag and Drop enabled but i need to inject reg before I can execute it..Curently bat file looks like this.regedit /s VBDECO~1.REGregsvr32.exe /s RICHTX32.OCXstart /wait VBDECO~1.EXEregsvr32.exe /u /s RICHTX32.OCXexitSo either go through your .reg file and create a corresponding list of RegWrites or use the Run command to import your .reg file like you're already doing? Share this post Link to post Share on other sites
Venom4444 0 Posted September 1, 2010 So either go through your .reg file and create a corresponding list of RegWrites or use the Run command to import your .reg file like you're already doing?I Have tried this but drag and drop still dont wanne work..RunWait(@ComSpec & " /c regsvr32 /s RICHTX32.OCX",@SystemDir,@SW_HIDE)sleep(10)run(@ScriptDir & "\APP NAME")Exit Share this post Link to post Share on other sites