标签: exe autoit
我想运行位于以下目录中的应用程序:
C:\ LCR 12 \ stu.exe
使用AutoIt,运行上述stu.exe文件的代码是什么?
答案 0 :(得分:6)
像这样:
Run("C:\LCR 12\stu.exe")
希望这就是你所追求的。
答案 1 :(得分:2)
您可以使用如下变量:
Local $exeLocation = "C:\LCR 12\stu.exe" Run($exeLocation)