Batch Processing in AutoCAD
John Barnett, from the UK, emails:
As a Building services Technician I often have to
bind drawings, purge them and audit them. Is it
possible for you to create a lisp routine that would
allow me to do this to multiple drawings?
You don't say which software you are using, but I am
going to assume AutoCAD. In order to batch process
multiple drawings, you have to create a script (*.scr)
and then run the script externally from AutoCAD.
The easiest way to do this I have found is to use
Scripteeze or some other batch processing software.
To write the script, use Notepad (Word adds
unnecessary formatting.)
Your script would look something like this:
-xref;bind;all;
-purge;all;
-audit;
-save;;
The Scripteeze website has samples of scripts to help
guide you through the process. The best method I
have found is to perform the commands of what you
want to do in the correct order. Then right click on
the command line and Copy History. Paste the
history into Notepad and edit it (delete the
unnecessary verbage and add the enter/returns).
It is not that I don't want to do your work for you.
Consider this more along the lines of "teach a
man to fish...".
Check out Scripteeze