-
KanBo Installation
- KanBo Installation Guide (Microsoft 365 + Azure)
- KanBo Installation Guide (On-Premises)
- KanBo On-Premises Installation Requirements and Prerequisites
- Creating an X.509 High-Trust Certificate
- Creating and Updating Elastic Cloud Deployment
- Installing Elasticsearch on Windows
- Installing Elasticsearch on Debian
- Creating a Windows Virtual Machine on Azure for Elasticsearch
- Creating a Linux Based Virtual Machine on Azure for Elasticsearch
- KanBo Modern Web Part Installation
- Supported Browsers
- KanBo Setup
-
KanBo Updates
-
Additional Components
- Installing KanBo Teams App
- Installing KanBo Outlook Add-in
- Installing KanBo Mini Application
- Installing Nintex Integration
- Installing Autodesk BIM Plugin
- Configuring UiPath Integration
- Installing and Configuring Power Automate Integration
- KanBo External User Groups (Active Directory Integration)
- User Auto-Provisioning on First Access (SharePoint Plugin)
- SharePoint Profile Synchronization
- Configuring Sync Targets
- SharePoint Site Collection Balancing and Admin Warnings
- Setting Up BIM Sync WebJob
- Configuring OData Integration for Power BI Desktop
- KanBo PowerShell Commandlets
- Direct Sync of SharePoint Lists with KanBo
- Enabling KanBo Email Notifications (Azure)
- Enabling KanBo Email Notifications (On-Premises)
- Enabling OneDrive Integration in KanBo
- Enabling Sending Card Messages as Emails
- Enabling Sending Emails to KanBo (Microsoft 365 + Azure)
- Enabling Sending Emails to KanBo (On-Premises)
- Prometheus and Grafana configuration for KanBo metrics
- Show all articles ( 3 ) Collapse Articles
-
Tips & Tricks
- Configuring Document Opening Behavior in KanBo
- Disabling Sleeping Tabs in Browsers
- Disabling Public Space Creation in KanBo
- Checking Certificate Expiration Dates (On-Premises)
- KanBo License ID
- Checking KanBo Version
- Changing the Help URL in KanBo
- Renewing Microsoft Graph Certificate
- Disabling Profile Picture Sync in Profile Sync Job
- Creating and Customizing Profile Sync WebJob
- Configuring KanBo for Microsoft Azure GCC High Environment
-
Troubleshooting
Disabling Profile Picture Sync in Profile Sync Job
Table of Contents
By default, the profile sync job sets KanBo users’ profile pictures to the ones in their M365 profiles. Follow these steps to remove this step from the job.
Change the appsettings.json of the job:
- Navigate to the folder of your job. On Azure, the folder should be located in: C:\home\site\wwwroot\App_Data\jobs\triggered\ProfileSync.
- On the appsettings.json file, select Edit.
You should see a section that looks like this:
JSON
{
"type": "package",
"name": "webjob.profile-sync",
"thumbprint": "THUMBPRINT",
"kanbo-url": "URL"
}
- Copy the thumbprint and URL.
- Then, change that section to this:
JSON
{
"type": "package",
"name": "kanbo-api",
"url": "URL",
"thumbprint": "THUMBPRINT"
},
{
"type": "job.profile-sync",
"name": "profiles"
},
{
"type": "profiles-provider.graph",
"children": [
[
"mapping",
{
"graph": "responsibilities",
"kanbo": "AskMeAbout",
"type": "string[]",
"separator": ", "
}
],
{
"type": "mapping",
"graph": "aboutMe",
"kanbo": "AboutMe"
},
{
"type": "mapping",
"graph": "mail",
"kanbo": "Email"
},
{
"type": "mapping",
"graph": "givenName",
"kanbo": "Name"
},
{
"type": "mapping",
"graph": "surname",
"kanbo": "Surname"
},
{
"type": "mapping",
"graph": "mobilePhone",
"kanbo": "Phone"
}
]
}
- Change the URL and thumbprint to the values you had before.
- Select Save.
Starting now, your M365 profile picture will no longer be synced with your KanBo profile picture.
Was this article helpful?
Please, contact us if you have any additional questions.
