"Graza" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> > You write
> > "The most common ones were the > or >> which creates a file then does
> > not display my interface followed by not actually recoring any of the
> > output. and command /c batfilename.bat >out.txt which just fails."
> >
> > I cannot work out what you mean. Can you rephrase this and be
> > a little more specific?
>
> I meant the most common "ouput" methods that I have seen are those the
>
> batfilename.bat >outFileName.txt
> batfilename.bat >>outFileName.txt
> and the
> command /c batfilename.bat >outFileName.txt
>
> and neither of these capture quite what i need.
Commands executed from the Command Prompt will capture
text output only, e.g.
SomeProgram.exe 1>standard.txt 2>error.txt
They will not capture graphical data. Are you trying to capture
graphical stuff?
|