Jump to content

Recommended Posts

Posted

Hi, is there a way to hide ms-dos proccess windows? i run several applications that are run from command line and everyone of them keeps a command prompt window opened, i wonder if theres any way to hide them (hope it is), thanks in advance


Posted

Depending upon a few things, you may be better off just starting each of the applications from a batch file:

@echo off
start "" c:\myprogs\prog1.exe
start "" c:\myprogs\prog2.exe
start "" c:\myprogs\prog3.exe
start "" c:\myprogs\prog4.exe
exit

sub-note

Using the above syntax, you shouldn't have several cmd windows open!

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...