Jump to content

command line optoins not working


Recommended Posts

Hello all, just started using AutoIT, loving it so far. My problem is I am trying to run an application with some command line switches it needs, below is what the command line looks like for running the application:

"C:\Program Files\Autodesk Land Desktop 2006\acad.exe" /p "MapLandDevelopmentDesktop"

Here is what I have in my script:

Run("C:\Program Files\Autodesk Land Desktop 2006\acad.exe" /p "MapLandDevelopmentDesktop")

Any help would be great, thanks

Link to comment
Share on other sites

  • Developers

try:

Run('"C:\Program Files\Autodesk Land Desktop 2006\acad.exe" /p "MapLandDevelopmentDesktop"')
Edited by JdeB

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

it has to do with the quotes (")

this is how i test what the CMD will see

MsgBox(0,0,'"C:\Program Files\Autodesk Land Desktop 2006\acad.exe" /p "MapLandDevelopmentDesktop"')

8)

i dont know the exact quotes and spacing for your run command

''' ah JdeB was faster

Edited by Valuater

NEWHeader1.png

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