Hi, Onetime
Even so, it's still easier at the workstation.
Since it is a DOS app, in DOS before starting the app use the CAPTURE command to cause the client to spool the output to a disk file rather than a print queue.
This could be included in a batch file that starts the DOS app. For example:
@echo off
cls
echo Now capturing to a file
capture /l=1 /cr=<filepath>\<filename> /na
echo Now calling batch file for DOS app
call <DOS App Batch File>
echo Now terminating all captures in effect
endcap all
exit
Note that the filepath must point to a drive
mapped on the Novell server, and of course the
user must have sufficient rights to create
files there. capture.exe is in the public
directory on the sys volume so a search drive
should be mapped there or the program should
be copied to the local folder with the app.
/l=1 will capture lpt1, 2 for lpt2 3 for 3.
/na means no auto endcap.
Best regards
Jock