In PMP Service Test/Setup application is available new Tools\Domain settings function to setup Domain settings in case custom settings are needed to access Active directory.
Saving of Domain settings updates PMP_Settings template with Domain settings, Template version is changed to 2.
The Domain Setttings are stored into Template by Administration\Publish new templates function in ProMo+.
Customize_Excel_Editor.dll can be optionally extended with GetProjectDocuments function to attach files and directories during saving of current project.
Public Class Customize_Excel_Editor
Implements IExcelEditor, IExcelEditor2
Public Function GetProjectDocuments(projectNumber As String) As List(Of ProjectDocument) Implements IExcelEditor2.GetProjectDocuments
Dim projectDocuments As New List(Of ProjectDocument)
'add file to current project
projectDocuments.Add(New ProjectDocument("c:\temp\PMAddFileTest1.xlsx", False))
'add file link to current project
projectDocuments.Add(New ProjectDocument("c:\temp\PMAddFileTest2.xlsx", True))
'add directory to current project
projectDocuments.Add(New ProjectDocument("c:\temp\"))
Return projectDocuments
End Function