KutoolsforOffice — One Suite. Five Tools. Get More Done.February Sale: 20% Off

How to batch print document information in Word

AuthorAmanda LiLast modified

Sometimes you don’t need to print the document content itself, but the document information instead, such as file name, author, number of pages, last saved date, or total words. Word lets you view and print this information for a single file, but it doesn’t offer a simple way to print it for many documents at once. If you’re working with lots of files, that quickly becomes tedious.

Open Batch Printing in Kutools for Word

In this tutorial, you’ll learn how to batch print document information from multiple Word documents with two approaches.


Batch print document information using Kutools for Word

Kutools for Word provides a Batch Printing feature that allows you to batch print document information for multiple files at once through a visual interface.

Kutools for Word

Kutools for Word helps you handle everyday document tasks faster with practical tools built right into Microsoft Word—no coding, no complex setup.

  • AI writing, polishing, translation, and summarization
  • Batch find and replace across documents
  • Merge and split Word documents easily
  • Batch Word ↔ PDF conversion
  1. Open Word and go to the Kutools Plus tab, then click Batch Printing.
    Open Batch Printing in Kutools for Word
  2. In the Print Specific Pages window, do the following:
    1. Add the documents you want to print:
      • Click Add Files to choose specific Word documents.
      • Or click Add Folder to include all documents in a folder and its subfolders.
    2. Switch to the Document Info tab, and select Document Info under the Print Info section.
    3. Click Print.
      Batch print settings in Kutools
      Tip: Other options in the Print Info let you print the list of markup, style, key assignments, AutoText entries, or comments across all documents.

After the batch finishes, Kutools for Word displays a summary window showing how many documents were printed successfully.

Batch print result dialog in Kutools for Word

Note:

  • Batch Printing uses the printer currently selected in Word. If you need to use a different printer, choose it first in File > Print, then run the batch.
    Printer selection in Word

Pros

  • Easy-to-use interface with clear print options
  • Designed specifically for batch printing
  • No fixed limit on number of files
  • Add files or entire folders quickly
  • Good for frequent batch tasks

Cons

  • Requires Kutools for Word

Want a faster way to handle similar tasks in Word? Try Kutools for Word and simplify your daily work.


Batch print document information using VBA

This approach relies on a simple VBA macro that runs through each document, prints its document information, and moves on to the next one.

  1. In a new or separate Word document that you do not plan to print, press Alt + F11 to open the VBA editor.
  2. Click Insert > Module.
    Insert a new module in the VBA editor by clicking Insert > Module
  3. Paste the macro below into the Module window, then replace C:\YourFolder\ with the path to your own folder.
    Sub BatchPrintDocumentInformation()
        Dim folderPath As String
        Dim fileName As String
        Dim doc As Document
    
        ' Set your folder path here (must end with a backslash)
        folderPath = "C:\YourFolder\"
        If Right(folderPath, 1) <> "\" Then folderPath = folderPath & "\"
    
        fileName = Dir(folderPath & "*.doc*")
    
        Application.ScreenUpdating = False
    
        Do While fileName <> ""
            Set doc = Documents.Open( _
                FileName:=folderPath & fileName, _
                ReadOnly:=True, _
                AddToRecentFiles:=False _
            )
    
            doc.PrintOut _
                Item:=wdPrintProperties, _
                Background:=False
    
            doc.Close SaveChanges:=wdDoNotSaveChanges
    
            fileName = Dir()
        Loop
    
        Application.ScreenUpdating = True
    End Sub
  4. Press F5 to run the macro.

The macro prints document information (properties) of each Word document in the specified folder. Documents stored in subfolders are not included.

Notes:

  • The macro must run from a separate, non-printed Word document, or the batch will fail.
  • Macros must be enabled. If your company blocks macros, this method won’t work.
  • This method uses the printer currently selected in Word. If you need to use a different printer, choose it first in File > Print before running the macro.

Pros

  • One run prints the whole folder
  • No fixed limit on number of files
  • Can be customized later (filters, rules, logging)

Cons

  • Macros may be disabled by policy
  • Requires basic VBA editing
  • Large batches may cause Word to slow down temporarily

Conclusion

If you want a quick, visual way to batch print document information, Kutools for Word is the easiest place to start. It handles multiple files through a single interface and avoids manual repetition. For users who prefer a built-in option and don’t mind some setup, a VBA macro provides a more technical but flexible alternative.

I hope you found this tutorial helpful. If you’d like to explore more Word tips and practical solutions, please click here to browse our full collection of Word tutorials.