3

I want to run an application 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?

2 Answers 2

7

Like this:

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

Hope this is what you were after.

Sign up to request clarification or add additional context in comments.

Comments

2

You can do by using a variable as below:

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

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.