A family of Microsoft word processing software products for creating web, email, and print documents.
If your templates are macro driven, you might be able to insert the following VBA code into their startup routine and all open windows will be minimized.
Dim objShell
Set objShell = CreateObject("shell.application")
objShell.MinimizeAll
Set objShell = Nothing
Hope this helps