.vsto outlook addin not installed with vbscript
i have .vsto outlook addin file, manually (right click and install and some steps) it is installed. But with vbscript it not shwoing the addin in outlook. i used below vb script. any body help ...
On Error Resume Next
Dim oXL
Dim oAddin
Set oXL = CreateObject("Outlook.Application")
oXL.Workbooks.Add
Set oAddin = oXL.AddIns.Add("PATH OF ADDIN FILE", False)
oAddin.Installed = True
oXL.Quit
Set oXL = Nothing
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
rileyz
10 years ago