Simple Autoit script help
I don't use Autoit much at all, but need to edit a current script someone else created. I need to run an .exe from the root of C:\ to apply a license. location: C:\IBM\SQLLIB\BIN\db2licm.exe" -a db2consv_ee.lic . Not sure what the command would be in Autoit, Any help would be appreciated.
0 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
SMal.tmcc
5 years ago
try
RunWait(@ComSpec & " /c " & "C:\IBM\SQLLIB\BIN\db2licm.exe" -a db2consv_ee.lic","",@SW_MINIMIZE)
Comments:
-
if the license file is not in same directory it will fail without the license file full target path - SMal.tmcc 5 years ago
Posted by:
nagendrasingh
5 years ago