-
KanBo Installation
- KanBo Installation on Office 365 and Azure (Manual)
- KanBo Installation on Office 365 and Azure (KanBo Installer)
- KanBo On-Premises Installation Requirements and Prerequisites
- KanBo Installation On-Premise SharePoint 2013/2016/2019
- Creating and Updating the Elastic Cloud Deployment
- Creating a Linux Based Virtual Machine on Azure for Elastic Search
- Installing and Configuring Elastic Search on Debian
- Creating a Windows Virtual Machine on Azure for Elastic Search
- Installing and Configuring Elastic Search on Windows
- How to Create a X.509 High-Trust Certificate
- KanBo Setup
- KanBo Modern Webpart Installation
- Uninstall KanBo from Office 365
- Supported Browsers
-
KanBo Updates
-
Additional Components
- Setting Up KanBo Email Notifications on Azure
- Setting Up KanBo Email Notifications (On-Premise)
- KanBo Outlook Add-in Installation (O365)
- Send Email to KanBo - Installation (Cloud)
- Send Email to KanBo - Installation (On-Premise)
- Enabling Email a Card Message
- KanBo and Microsoft Power Automate integration: Installation
- KanBo and Microsoft Power Automate Integration: Activation
- Installation of KanBo MyBoard Synchronization with Outlook Calendar and Outlook Tasks
- Installation of the Autodesk BIM Plugin for KanBo
- KanBo and UiPath Integration: Configuration
- Nintex Integration Installation
- KanBo API for Developers
- KanBo External User Groups (Active Directory Integration)
- KanBo Mini Application Installation
- Plugin for Adding Users to KanBo / Sharepoint When They First Enter it
- SharePoint Profiles Synchronization
- SharePoint Site Collection Balancing and Admin Warnings
- Sync Targets
- Installation of the KanBo Teams App
- Setting up BIM Sync as a Webjob
- Configuring KanBo for OData integration in PowerBI Desktop
- Show all articles ( 2 ) Collapse Articles
-
Tips & Tricks
- Configure How Documents Should Be Opened from KanBo
- Customize KanBo Background Images and KanBo Colors
- Disable Sleeping Tabs in Browsers
- Disable/Enable Public Boards Creation
- Find Out the Certificate Expiration Dates On-Premise
- Get KanBo ID
- How to Change the Help URL in Your KanBo
- Import Users to KanBo
- Renew Certificate for KanBo Graph Installation
- Show KanBo Version
- Removing syncing of profile pictures in the Profile Sync job
- Creating and customizing the Profile Sync Webjob
- KanBo configuration for Microsoft Azure Cloud GCC High environment
-
Troubleshooting
- KanBo Error: 401 (On-Premise Installation)
- KanBo Error: 403 (On-Premise Installation)
- KanBo Error: Cannot Open Database
- KanBo Error: User Authentication Postback Failed (On-Premise Installation)
- Migrate Boards between Office 365 Groups
- Replace Expiring Client Secret
- Grant access to logs of an Azure Web App hosted KanBo
Removing syncing of profile pictures in the Profile Sync job
Table of Contents
This post is also available in: Deutsch
By default, the profile sync job sets the profile pictures of KanBo users to the ones in Your O365 Profile. To remove this step of the job, follow these steps:
Change the appsettings.json of the Job
First, head to the folder of Your job. On Azure, the folder should be localted in C:\home\site\wwwroot\App_Data\jobs\triggered\ProfileSync
Click the “Edit” button on the “appsettings.json” file.
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 the url somewhere.
After that, 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 the changed.
After changing the config, click on save, and from now on the profile sync job stops syncing Your O365 profile picture with the KanBo profile picture.