
3vz0a (3vz0a) asked a question.
How do you handle changing the token claims format for all permissions on sites and items in SharePoint Online. When changing authentication providers.
From - i:0e.t|adfs30|user@domain.com
To - i:0ȏ.t|okta|user@domain.com

Hi Steve, I've asked my product colleagues for guidance here. In the meantime, wondering if anyone else in the Okta Community has solved this before and can help out?
Hi Steve,
Installing Okta SharePoint People Picker solution on a site level, it will replace the search indexer having it point to Okta when querying users by any of the configured claims.
In order to apply to the on-prem version of Sharepoint , these are the commands that need to be applied for every site :
$webApplication = Get-SPWebApplication
$ webApplication.Properties["UserSearchScope"] = "OKTA"
OR
$ webApplication.Properties["UserSearchScope"] = "APP"
$ webApplication.Properties["UserSearchScopeAppId"] = "{AppID}" //app instance id in Okta org
$webApplication.Update();
If you're referring strictly to the online version of Sharepoint (Microsoft Suite) then the entire configuration will go through a provisioning API. If you have additional questions in regards to the deployment, I strongly suggest opening up a support ticket to further discuss the details.
Thank you,
Marius Fulga
Tier 2 Support Engineer