January 13, 2026
Adding items to Launch Pad Widget
Learn how to add items via My Apps Content App
The AppManager App package provided to you from Akumina has 3 files that need to be customized for your site. Unique values that are applicable to your SharePoint and AppManager must be set. These files are the web.config, interchange.settings.config, and the unity.config files that were just extracted from the zip file.
Customizing the web.config File
Edit the web.config file using Notepad++ or a similar tool
Edit the interchange.settings.config file using Notepad++ or a similar tool
IMPORTANT: The folder specified MUST have Full Control set for EVERYONE to enable the correct access.<add key="akumina:tempuploadpath" value="C:\TEMP" />
<add key="akumina:SMTPHost" value="" /><add key="akumina:SMTPUser" value="" />
<add key="akumina:SMTPPassword" value="" />
<add key="akumina:SMTPPort" value="" />
<add key="akumina:BackgroundProcessorKey" value=""/>
<add key="akumina:CustomCertificateValidation" value="false"/>
<add key="akumina:SecureAPI" value="true"/>
Customizing the unity.config File
Edit the unity.config file using Notepad++ or a similar tool
<!--Use PeopleDirectoryStorageHandlerService for SharePoint Profile Sync--><register type="IPeopleDirectoryUserStorageHandler" mapTo="PeopleDirectoryStorageHandlerServiceAD" />
There are two options for enabling the use of the high-trust certificate that was created in a prior step:
The following steps will enable the use of the certificate serial number (instead of user credentials) when configuring an on-prem high trust environment.
<add key="akumina:AuthMode" value="S2S" />
<add key="ClientSigningCertificateSerialNumber" value="<Serial Number>"/>
<!--<add key="ClientSigningCertificatePath" value="" /> -->
<!--<add key="ClientSigningCertificatePassword" value= "" /> -->
Note: Alternatively, you can grant read permission only to the private file related to your certificate, and not the entire directory.
* To find the serial number of your certificate, double click your .cer file, select the Details tab, and then select the “Serial number” field
Search and find the following 3 keys associated with the certificate. Uncomment the keys and add the values from your certificate process.