Share via

Where does Word keep where templates are?

Anonymous
2024-01-16T16:39:09+00:00

Where, in Word, does Word store where it looks to find Word templates?

I've searched for this, but only get results that say where the Word templates are stored. That is NOT what I want to know. I want to know where, in Word's configuration/options/whatever it is within the Word settings you enter the location of where the Word template is. What menu is it?

Microsoft 365 and Office | Word | For business | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
Answer accepted by question author
  1. Charles Kenyon 166.4K Reputation points Volunteer Moderator
    2024-01-16T18:29:06+00:00

    Word for Windows

    File > Options > Advanced > File Locations (User Templates Folder, Workgroup Templates Folder)

    File > Options > Save > Default Save Location for new templates

    References:

    10 people found this answer helpful.
    0 comments No comments

8 additional answers

Sort by: Most helpful
  1. Charles Kenyon 166.4K Reputation points Volunteer Moderator
    2024-01-17T18:42:03+00:00

    The File Locations button is disabled. I cannot click it or open it.

    A statement along the following lines in the vb editor immediate window should set this. I do not know that this will override a group policy, nor am I advising you to do so even if it will.

    Options.DefaultFilePath(wdUserTemplatesPath)= "d:\ms system files\MyTemplates"
    

    The location is a string with the drive and folder and with no terminating backslash.

    Resources:

    2 people found this answer helpful.
    0 comments No comments
  2. Charles Kenyon 166.4K Reputation points Volunteer Moderator
    2024-01-18T18:48:24+00:00

    In Windows, the actual location is in the Registry, but I thought you were really asking about the menus and UI access.

    The registry key is Data>Settings which contains a lot of user settings.

    Computer\HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Word\Data
    

    Image.

    Experienced users who regularly edit the registry tend to avoid touching this because it contains so many settings. When they need to change something in it, they will often simply delete it and let Word recreate it.

    The Data settings key is binary. Always backup the registry when making any changes.

    Word 2007 & Later Key Data File Locations

    1 person found this answer helpful.
    0 comments No comments
  3. Charles Kenyon 166.4K Reputation points Volunteer Moderator
    2024-01-16T21:40:07+00:00

    The following is a macro that will show file save locations. The macro produces the following Message Box:

    Image

    It will identify custom locations set by the user. It does not make any changes.

    Sub FilePathIs()

        '

        ' Macro written 3 December 2001 by Charles Kyle Kenyon

        '  modified 4 January 2024 to add documents location renamed from TemplatesPathIs

        '  assisted by Hans Vogelar on finding default save location for new templates

        ' Gives folder location for certain files as set by user

        '

        ' I do not know what happens if this runs on a computer that has not had a WorkGroup Templates folder set

        ' This will not run on a Mac - use alternate macro if running on a Mac

        '

        Dim sUserTemplatesLocation As String

        Dim sWorkgroupTemplatesLocation As String

        Dim sStartUpTemplatesLocation As String

        Dim sNewTemplatesLocation As String

        Dim sDocumentsDefaultLocation As String

        Dim sActiveDocumentPath As String

        '

        On Error Resume Next

        '

        sUserTemplatesLocation = Options.DefaultFilePath(wdUserTemplatesPath) & ""

        sWorkgroupTemplatesLocation = Options.DefaultFilePath(wdWorkgroupTemplatesPath) & ""

        sStartUpTemplatesLocation = Options.DefaultFilePath(wdStartupPath) & ""

        sNewTemplatesLocation = CreateObject("WScript.Shell").RegRead _

            ("HKEY_CURRENT_USER\Software\Microsoft\Office" & Application.Version & "\Word\Options\PersonalTemplates")

        sDocumentsDefaultLocation = Options.DefaultFilePath(wdDocumentsPath) & ""

        If ActiveDocument.Path <> "" Then

            sActiveDocumentPath = "The active document's save path is: " & ActiveDocument.Path & ""

        Else

            sActiveDocumentPath = "This document has never been saved!"

        End If

        '

        MsgBox Prompt:="The user templates are in:" & vbCrLf _

                & vbTab & sUserTemplatesLocation & vbCrLf & vbCrLf _

            & "The Workgroup Templates are in:" & vbCrLf _

                & vbTab & sWorkgroupTemplatesLocation & vbCrLf & vbCrLf _

            & "The Startup (Add-In) Templates are in:" & vbCrLf _

                & vbTab & sStartUpTemplatesLocation & vbCrLf & vbCrLf _

            & "The default save location for new templates is: " & vbCrLf _

                & vbTab & sNewTemplatesLocation & vbCrLf & vbCrLf _

            & "The default save location for documents is: " & vbCrLf _

                & vbTab & sDocumentsDefaultLocation & vbCrLf _

                & vbTab & "Note: this may have been temporarily changed by a save." & vbCrLf & vbCrLf _

                       & sActiveDocumentPath, _

            Buttons:=vbInformation, title:="Default file location settings - Windows Version"

        On Error GoTo -1

    End Sub

    '

    Sub FilePathIsMac()

        '

        ' Macro written 3 December 2001 by Charles Kyle Kenyon

        '  modified 4 January 2024 to add documents location renamed from TemplatesPathIs

        ' Gives folder location for certain files as set by user

        '

        ' I do not know what happens if this runs on a computer that has not had a WorkGroup Templates folder set

        ' This is intended for use on a Mac - does not give Default Save Location for New Templates

        '

        Dim sUserTemplatesLocation As String

        Dim sWorkgroupTemplatesLocation As String

        Dim sStartUpTemplatesLocation As String

        Dim sDocumentsDefaultLocation As String

        Dim sActiveDocumentPath As String

        '

        On Error Resume Next

        '

        sUserTemplatesLocation = Options.DefaultFilePath(wdUserTemplatesPath) & ""

        sWorkgroupTemplatesLocation = Options.DefaultFilePath(wdWorkgroupTemplatesPath) & ""

        sStartUpTemplatesLocation = Options.DefaultFilePath(wdStartupPath) & ""

        sDocumentsDefaultLocation = Options.DefaultFilePath(wdDocumentsPath) & ""

        If ActiveDocument.Path <> "" Then

            sActiveDocumentPath = "The active document's save path is: " & ActiveDocument.Path & ""

        Else

            sActiveDocumentPath = "This document has never been saved!"

        End If

        '

        MsgBox Prompt:="The user templates are in:" & vbCrLf _

                & vbTab & sUserTemplatesLocation & vbCrLf & vbCrLf _

            & "The Workgroup Templates are in:" & vbCrLf _

                & vbTab & sWorkgroupTemplatesLocation & vbCrLf & vbCrLf _

            & "The Startup (Add-In) Templates are in:" & vbCrLf _

                & vbTab & sStartUpTemplatesLocation & vbCrLf & vbCrLf _

            & "The default save location for documents is: " & vbCrLf _

                & vbTab & sDocumentsDefaultLocation & vbCrLf _

                & vbTab & "Note: this may have been temporarily changed by a save." & vbCrLf & vbCrLf _

                       & sActiveDocumentPath, _

            Buttons:=vbInformation, title:="Default file location settings - Mac Version"

        On Error GoTo -1

    End Sub

    Resources:

    1 person found this answer helpful.
    0 comments No comments
  4. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more