Jump to content

ShellExecute with current dir specified


 Share

Recommended Posts

Hi,

I often use ShellExecute to run any .exe, but I'm surprised of that :

ShellExecute("conf.exe", "", @ScriptDir)

With XP, it don't run "conf.exe" into @ScriptDir but run conf.exe of "C:\Program Files\NetMeeting"...

Dir specified into ShellExecute command in not with and higher priority ?

Thanks a lot :mellow:

Edited by Amour
Link to comment
Share on other sites

  • Developers

Third parameter doesn't says anything about where to find the program, only what the workdir is of the shelled application.

Use fully qualified filenames in the first parameter if you want to be explicit.

ShellExecute ( "filename" [, "parameters" [, "workingdir" [, "verb" [, showflag]]]] )

Parameters

filename The name of the file to run (EXE, .txt, .lnk, etc). 
parameters [optional] Any parameters for the program. Blank ("") uses none. 
workingdir [optional] The working directory. Blank ("") uses the current working directory. 
verb [optional] The "verb" to use, common verbs include:
  open = Opens the file specified. The file can be an executable file, a document file, or a folder
  edit = Launches an editor and opens the document for editing. If "filename" is not a document file, the function will fail
  print = Prints the document file specified. If "filename" is not a document file, the function will fail
  properties = Displays the file or folder's properties
  See remarks for more information on the default behavior when a verb is not specified. 
showflag [optional] The "show" flag of the executed program:
  @SW_HIDE = Hidden window
  @SW_MINIMIZE = Minimized window
  @SW_MAXIMIZE = Maximized window
Edited by Jos

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