Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Executing AutoIt script from command prompt

Is there any way to execute my AutoIt script (.au3 file) from command line?

like image 557
name_masked Avatar asked Dec 17 '22 20:12

name_masked


2 Answers

You could compile your AutoIt script and run the .exe from the command line.

Or, you can run the script like this:

AutoIt3.exe myscript.au3

like image 174
aphoria Avatar answered Dec 28 '22 17:12

aphoria


The default installation of autoit makes .au3 files runnable from the command line by just using

c:>\script.au3

like image 39
Martlark Avatar answered Dec 28 '22 15:12

Martlark