Jump to content

Cmdline Help


Recommended Posts

$CmdLine[0] = 1

$VAR = $CmdLine[1]

Run("D:\uptime.exe ip:$VAR /cmd", "", @SW_MINIMIZE)

For some reason when i run the autoit script the commandline doesn't get parsed.

I remember in the old AutoIT %1% would simply work. If anyone could help me fix this script it would be great. Thanks.

Link to comment
Share on other sites

  • Developers

The variable shouldn't be inside a string ....

Give it a try this way:

if $CmdLine[0] > 0 then 
   Run("D:\uptime.exe ip:" & $CmdLine[1] & " /cmd", "", @SW_MINIMIZE)
endif

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

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...