User Profile
Ramikin
Copper Contributor
Joined Jan 26, 2021
User Widgets
Recent Discussions
Re: Migrating users from on-prem AD to AzureAD only
I've read about the process. The literature on this is not totally clear though. If we disable the sync, will AzureAD identities remain enabled and in their exact state as it was prior to disabling the sync? If so this would suggest the Private Channels problem would be avoided. So far, I've been avoiding a whole scale change that affects all users in one fell swoop because of the problems we've been experiencing. I could do with some clarity that we'd be ok with this approach.1.9KViews0likes1CommentMigrating users from on-prem AD to AzureAD only
Hello, We are in the process of migrating to AzureAD for all users and devices. Users are currently synced from on-prem AD to AzureAD using the Azure Directory Sync tool. We don't have a significant number of users, and so use a manual process, that has problems. To migrate users, our current process is as follows: Move the user in on-prem AD to an OU that is not part of the Directory Synchronisation Run a delta sync on the Sync Tool In AzureAD, the user is deleted. We manually re-enable them The problem is that in carrying out this process, the user is removed from all the Teams Private Channels that they were a member of (they retain the overall team membership). Is there a better way to break the AD sync for a user, retaining them in AzureAD and also retaining all their private channel memberships? Thanks in advance.2.2KViews0likes3CommentsList Tile View user thumbnail size
Hello, Preface: I am a SharePoint novice having only moved to the platform this year... I have a list containing a 'person' column (titled 'Staff Email') populated with the staff members at our school. I am embedding the list in gallery view to a SharePoint page. However, in Tile view I would like to increase the size of the user thumbnail. With some trial and error amending the JSON data in advanced mode (bearing in mind I am a novice, and trial and error is all I have at my disposal) I have found that I need to remove "class": "sp-card-userThumbnail" [Line 58] to cause any change at all. But how do I increase the size of the circular thumbnail that is displayed? See the code below that I am trying to amend. Any help and advice gratefully received. I hope you can help, many thanks in advance. "formatter": { "elmType": "div", "attributes": { "class": "sp-card-container" }, "children": [ { "elmType": "button", "attributes": { "class": "sp-card-defaultClickButton", "role": "presentation" }, "customRowAction": { "action": "defaultClick" } }, { "elmType": "div", "attributes": { "class": "ms-bgColor-white sp-css-borderColor-neutralLight sp-card-borderHighlight sp-card-subContainer" }, "children": [ { "elmType": "div", "attributes": { "class": "sp-card-previewColumnContainer" }, "children": [ { "elmType": "div", "style": { "display": "flex" }, "children": [ { "elmType": "p", "attributes": { "class": "sp-card-userEmptyText" }, "txtContent": "=if(length([$StaffEmail]) == 0, '–', '')" }, { "forEach": "personIterator in [$StaffEmail]", "elmType": "a", "attributes": { "class": "=if(loopIndex('personIterator') >= 5, 'sp-card-userContainer', 'sp-card-userContainer sp-card-keyboard-focusable')" }, "style": { "display": "=if(loopIndex('personIterator') >= 5, 'none', '')" }, "children": [ { "elmType": "img", "defaultHoverField": "[$personIterator]", "attributes": { "src": "=getUserImage([$personIterator.email], 'S')", "title": "[$personIterator.title]", "class": "sp-card-userThumbnail" }, "style": { "display": "=if(length([$StaffEmail]) > 5 && loopIndex('personIterator') >= 4, 'none', '')" } }, { "elmType": "div", "attributes": { "class": "ms-bgColor-neutralLight ms-fontColor-neutralSecondary sp-card-userOthers" }, "style": { "display": "=if(length([$StaffEmail]) > 5 && loopIndex('personIterator') == 4, '', 'none')" }, "customCardProps": { "formatter": { "elmType": "div", "attributes": { "class": "sp-card-personCallout" }, "children": [ { "forEach": "personIterator in [$StaffEmail]", "elmType": "div", "attributes": { "class": "sp-card-userContainer sp-card-userCustomCard" }, "style": { "display": "=if(loopIndex('personIterator') < 4, 'none', '')" }, "children": [ { "elmType": "img", "defaultHoverField": "[$personIterator]", "attributes": { "src": "=getUserImage([$personIterator.email], 'S')", "title": "[$personIterator.title]", "class": "sp-card-userThumbnail" } } ] } ] }, "openOnEvent": "hover" }, "children": [ { "elmType": "span", "txtContent": "='+' + toString(length([$StaffEmail]) - (4))" } ] } ] }, { "elmType": "div", "attributes": { "class": "sp-card-userTitle" }, "style": { "display": "=if(length([$StaffEmail]) == 1, '', 'none')" }, "defaultHoverField": "[$personIterator]", "txtContent": "[$StaffEmail.title]" } ] } ] },Solved3.6KViews0likes2Comments
Recent Blog Articles
No content to show