Run exe file in silent mode using command prompt

21,892

As others said, make sure your path to your exe file is correct. You can change directory where exe is before execution or write out the full path.

By silent mode if you mean to run exe without any output on screen, then simply redirect the output to a file.

E.g. if your exe is in D:\myprog\myprog.exe, then following command will make your program run in "silent" mode:

c:>"D:\myprog\myprog.exe" > "D:\myprog\output.txt"

Above example will dump output into output.txt file.

Share:
21,892
Kiran Reddy
Author by

Kiran Reddy

Updated on September 15, 2020

Comments

  • Kiran Reddy
    Kiran Reddy over 3 years

    I am trying to run xxx.exe file using command prompt with silent mode. i saw this link in Google: http://www.powerware.com/Software/lansafe_help/LSHelp424.htm.

    when i run this command : C:>"D:\xxx.exe" -r -f1"D:\Test.iss" am getting error : "xxx.exe" is not recognized as an internal or external command operable program or batch file.

    Can any body give the idea where i am doing mistake.

  • Kiran Reddy
    Kiran Reddy over 11 years
    Thanks for advice.Yes file residing other location.Now i run the exe file. But Test.iss file is not created.
  • Kiran Reddy
    Kiran Reddy over 11 years
    Thanks for reply, i run this command but C:\>"D:\xxx.exe" >"D:\Test.iss" Now it is creating Test.iss file. But my exe file is running and it showing screen. let me know how can i do for not showing screerns.
  • loopedcode
    loopedcode over 11 years
    Is xxx.exe console program or a Windows UI program?
  • loopedcode
    loopedcode over 11 years
    UI Application will always create the window as it runs. The example that I gave was for console applications. I don't think there is a command line solution available for hiding UI. You can use PowerShell script to write a wrapper which can run a process without showing active screen. Another option could be using this: snapfiles.com/get/outofsight.html which hides UI screens.