Bulk printing under windows xp/2000?
June 8, 2005 8:15 AM
Subscribe
How the heck can I bulk print thousands of mixed documents under Windows 2000?
Ok... so here's my situation: as part of our production workflow, I've got to print about 1,000 documents every day. They're all word or html, sitting in a single directory.
I wrote a ghetto-ass php script that opens the docs using com objects within Word, but that seems to working worse and worse as the load increases.
Anyway, anyone have any tips of printing this type of stuff? Ideally, we'd just use Word, but it seems to get stuck open sometimes -- particularly when I'm printing html docs from word -- and that just backs up the entire queue.
I can't use the standard "select all," right click, then "print" feature either... it just can't handle the rock.
posted by ph00dz to computers & internet (6 comments total)
Dim aDoc As Document
For Each aDoc In Documents
aDoc.PrintOut
aDoc.Close SaveChanges:=wdSaveChanges
Next
End Sub
I take absolutely no responsibility if this goes bonkers on you, and it doesn't always function incredibly well, but it may be of use to you. It's worked well for me for a number of years, although nowhere near similar numbers as those you're speaking of.
posted by WCityMike at 9:22 AM on June 8, 2005