Run DOS programma's in de achtergrond
You can run an application in the background from a DOS prompt to save you time.
To do this, create a batch file in the c:\windows\command directory (or any other directory in the path) called bg.bat
Put in this file the following lines:
@echo off
start /m %1 %2 %3 %4 %5 %6 %7 %8 %9
:end.
For example, to unzip a file in the background, you would run:
bg pkunzip foo.zip c:\temp.
The DOS prompt will reappear, and the zip file will extract in the background.
Reacties & suggesties : adjes@startmail.nl
Ad Slijkerman.
Copyright © 2002 Alle rechten voorbehouden.