Hello Everyone,
Sounds weird, but office politics stops me from creating a macro button through word. Plus the limitations on our network, we can't have shortcuts on our desktops.

So I was thinking, I use Outlook allot and its one of the only app that is open all the time, I've created macros for other mail templates as macro buttons, but I was thinking, why not create one for a word template I use all the time,

Here the code I've tried, but I can't get it to work the way it should, any help would be awesome.

Code:
Sub Faultsheet()
   
Set appWord = GetObject(, "Word.Application")
Set docs = appWord.Documents
docs.OpenTemplate = ("K:\AA_IT_Folder\Faults & Enquiry - Logged Calls\IT FAULT & ENQUIRY REPORTING FORM.dot")

End Sub