3

I am working on a WIN32 application in Visual Studio 2010. I have to execute an external exe from my code but don't have to show its window. along with executing the exe I am passing certain argument to exe. my code is given

char path[] = "D:\\scan\\scan.exe -l";
system(path);
//ShellExecute(hWnd, "open",path, NULL, NULL, SWP_HIDEWINDOW); 

if I use system(path) it is executed properly but the window of the exe is also shown, but if I use ShellExecute(hWnd, "open",path, NULL, NULL, SWP_HIDEWINDOW); then the exe of the given path is not executed. how should I overcome this problem, kindly guide me

Cœur
  • 34,719
  • 24
  • 185
  • 251
WiXXeY
  • 951
  • 5
  • 19
  • 46

2 Answers2

6

ShellExecute wants the program name and its parameters to be given separately. Try this:

ShellExecute(hWnd, NULL, "D:\\scan\\scan.exe", "-l", NULL, SW_HIDE);
Jonathan Potter
  • 35,093
  • 4
  • 58
  • 73
3

You should really use CreateProcess which does not use the shell to call a program. This also allows you to capture the program output and retrieve any error codes it might give.

If you need to hide the window of a GUI app, you can set CREATE_NO_WINDOW in the dwFlags in the CreateProcess call (cfr. this answer)

Community
  • 1
  • 1
rubenvb
  • 72,003
  • 32
  • 177
  • 319