3

我想运行一个位于以下目录中的应用程序:

C:\LCR 12\stu.exe

使用 AutoIt,运行上述 stu.exe 文件的代码是什么?

4

2 回答 2

7

像这样:

Run("C:\LCR 12\stu.exe")

希望这就是你所追求的。

于 2011-05-31T14:53:19.983 回答
2

您可以使用如下变量来完成:

Local $exeLocation = "C:\LCR 12\stu.exe"
Run($exeLocation)
于 2014-04-07T08:11:57.227 回答