开发者

AutoIt Script to run .exe file

开发者 https://www.devze.com 2023-03-09 04:47 出处:网络
I want to run an applic开发者_运维百科ation which is located in the following directory: C:\\LCR 12\\stu.exe

I want to run an applic开发者_运维百科ation which is located in the following directory:

C:\LCR 12\stu.exe

With AutoIt, what would be the code to run the above stu.exe file?


Like this:

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

Hope this is what you were after.


You can do by using a variable as below:

Local $exeLocation = "C:\LCR 12\stu.exe"
Run($exeLocation)
0

精彩评论

暂无评论...
验证码 换一张
取 消