Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 07-19-2023, 04:27 AM
radioMic radioMic is offline Adding Email Templates to the Standard Templates Folder Windows 10 Adding Email Templates to the Standard Templates Folder Office 2021
Novice
Adding Email Templates to the Standard Templates Folder
 
Join Date: Mar 2022
Posts: 7
radioMic is on a distinguished road
Question Adding Email Templates to the Standard Templates Folder


Looking to find out how, from an Admin perspective, how to add email templates to the ( Home tab ) New Items > More Items > Choose Form > Standard Templates folder. Being told by nonAdmin that it cannot be done because the Standard Templates folder is closed off. Don't really know what that means, but sounds like someone just doesn't want to do anything.

Any guidance and insight on how to go about doing this would be appreciated.
Reply With Quote
  #2  
Old 07-19-2023, 11:07 PM
gmayor's Avatar
gmayor gmayor is offline Adding Email Templates to the Standard Templates Folder Windows 10 Adding Email Templates to the Standard Templates Folder Office 2019
Expert
 
Join Date: Aug 2014
Posts: 4,106
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

What you have been told may simply mean that by default the Office templates folder is a hidden user folder. It can be accessed by entering (on the user's PC)
%appdata%\Microsoft\Templates
in the Windows File Explorer Address bar and pressing Enter.

Or from VBA
Code:
Dim sPath As String
sPath = Environ("APPDATA") & "\Microsoft\Templates\"
Thus you can copy a template from its current location to the required location on a given user's PC using a macro e.g.
Code:
Sub CopyTemplate()
Const sTemplatePath As String = "C:\Path\" 'The location of the template to be copied
Const sTemplateName As String = "TemplateName.oft" 'The filename of the template
Dim oFSO As Object
Dim sPath As String
    sPath = Environ("APPDATA") & "\Microsoft\Templates\"
    Set oFSO = CreateObject("Scripting.FileSystemObject")
    oFSO.CopyFile sTemplatePath & sTemplateName, sPath & sTemplateName, True
End Sub
It would be possible to change the templates folder to a different location, but given your comments, that might prove even more problematic for you.
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote
  #3  
Old 07-21-2023, 05:21 AM
radioMic radioMic is offline Adding Email Templates to the Standard Templates Folder Windows 10 Adding Email Templates to the Standard Templates Folder Office 2021
Novice
Adding Email Templates to the Standard Templates Folder
 
Join Date: Mar 2022
Posts: 7
radioMic is on a distinguished road
Default

gmayor,

Based on your suggestion, I thought that is what the User Template in File System option in the dropdown options is for? Guessing the Standard Templates option is to access the default email templates from Microsoft

Based on this, I ask definitely asked the wrong question and guess the only way to distribute the templates and make them available is through a system update push... hmmm. That won't sit well.

Thanks for the correction and insight though. Always learning!
Reply With Quote
Reply

Tags
folder, standard, templates



Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding in names across 8 document templates Joxner Mail Merge 1 06-27-2020 09:02 PM
Using Styles in Templates to help format text - Importing and working with Templates daithy Word 2 01-03-2020 05:06 PM
Adding Email Templates to the Standard Templates Folder How To Move Saved New Templates From My Documents To My Templates? woodbine Word 9 04-02-2015 10:28 AM
Office 2010 change location workgroup templates appear in from My Templates folder nickc Word 0 11-20-2013 03:38 AM
Adding company templates into Powerpoint dennisv PowerPoint 0 04-09-2012 11:39 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 01:39 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft