Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想运行一个位于以下目录中的应用程序:
C:\LCR 12\stu.exe
使用 AutoIt,运行上述 stu.exe 文件的代码是什么?
像这样:
Run("C:\LCR 12\stu.exe")
希望这就是你所追求的。
您可以使用如下变量来完成:
Local $exeLocation = "C:\LCR 12\stu.exe" Run($exeLocation)