#2
Batch processing can be done with lisp. It is not very flexible since plot parameters cannot be chanced at run time. Default/last print is used for all processed drawings.

1. Get doslib for Intellicad:
ftp://ftp.mcneel.com/pub/doslib/doslib4.exe
put doslib4.dll in your intellicad folder.

Run this lisp:

(defun C:BPRINT (/ )
(if (not dos_dir) (xload "doslib4.dll"))
(setq files (dos_getfilem "Select files to print.." "c:\\""Drawing Files (*.dwg)|*.dwg"))
(setq dwgpath (car files))
(if (/= files nil)
(progn
(foreach dwgfile (acad_strlsort (setq dwgsonly (cdr files)) dwgsonly)
(command "open" (strcat dwgpath dwgfile))
(command ".qprint")
(command ".qsave")
(command ".close")
)
)
)
)
cron