Save the templates as macro enabled and add the following macros to the templates. the macros will intercept the Print commands and print only page 2
Code:
Option Explicit
Sub FilePrint()
Application.PrintOut Filename:="", _
Range:=wdPrintRangeOfPages, _
copies:=1, _
Pages:="2"
End Sub
Sub FilePrintDefault()
Application.PrintOut Filename:="", _
Range:=wdPrintRangeOfPages, _
copies:=1, _
Pages:="2"
End Sub