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!

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
  • Recently Browsing   0 members

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