Jump to content

how do i have an autoit exe interpret run parameters


Recommended Posts

Command line parameters help could help to you.

As an example, compile below script using CUI and run it from console.

script.exe parameter1 parameter2 lalala

#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Change2CUI=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****

For $i=1 to $cmdLine[0]
    ConsoleWrite("Parameter " & $i & " is " & $cmdLine[$i] & @CRLF)
Next
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...