This plugin allows to add files and links to your menu, without any complicated programming or configuration. Just plain and simple. To get Files to appear in your Menu, you just put them into a specific folder.
- Install the AddIn
- Create a folder in
%appdata%
with the nameOutlookTemplates
- Any folder directly below that will create a new
Tab
with the same name - Any folder inside a
Tab
folder will create acategory
with the same name - Put the files you want in your menu inside a
category
folder
.msg
.oft
.txt
.html
.lnk
.url
Depending on the filetype a icon will be chosen.
If you want a file to have a custom icon, just add a .png file with the same name as the original file. So if you have My Template.msg
the icon needs to be named My Template.msg.png
for it to appear.
A folder structure like this will result in two tabs named Dev
and Online
.
Dev
will have one category called Mailcow
with two clickable buttons. Those will open the default webbrowser with their containing links. The WebMail url will have a custom icon as well.
Online
will have two categories called Entertainment
and Search Engines
.
Yes, just copy the folder structure to your users home folder and it will automatically load all the required data.
Because its in the AppData folder, it will make sure that users will have the templates available even when offline or not connected to a central storage server.
"C:\Program Files\Common Files\microsoft shared\VSTO\10.0\VSTOInstaller.exe" /install OutlookTemplateAddIn.vsto /silent
As it's a self signed certificate, you might need to trust the certificate before installing it silently. Otherwise you might not get it installed without a popup dialog or it will exit with error code -300. Just export the certificate to a folder and trust it. After the installation you can remove it again, the AddIn will work anyways.
certutil -addstore ROOT "path_to_cert"
certutil -addstore TRUSTEDPUBLISHER "path_to_cert"
certutil -delstore ROOT "adamite.de"
certutil -delstore TRUSTEDPUBLISHER "adamite.de"