You're probably not interested in programming a Word macro to do it for you, but for anyone who is, here's a couple code snippets that might help you on your way...
Here's a Word macro that prints the document then closes it:
Code:Sub PrintAllOpenDocs()
'
' Macro created 06/11/99
'
For Each openDoc In Documents
With openDoc
.PrintOut
.Close
End With
Next openDoc
End Sub
And here's a macro to open all .doc's from a specific folder:
Code:Sub OpenAll()
'
' OpenAll Macro
' Macro recorded 04/05/00
'
ChDir "c:\yourpath\"
Set fs = Application.FileSearch
With fs
.LookIn = "C:\yourpath"
.FileName = "*.doc"
If .Execute > 0 Then
MsgBox "There were " & .FoundFiles.Count & _
" file(s) found."
For i = 1 To .FoundFiles.Count
MsgBox .FoundFiles(i)
Next i
Else
MsgBox "There were no files found."
End If
End With
End Sub