Great news, Microsoft is announcing a 20x increase in the SharePoint Online per user license storage allocation. This will increase to 1 TB plus 10 GB per user license purchased. Note this does not include SharePoint Online kiosk plans including Office 365 F1 and Microsoft 365 F1. Example scenarios of increased storage allocation: 100 user …
Category: O365
SharePoint 101 – Confusions about SharePoint Online Site Group and Site Members Permissions
Lately I've got a lot of request regarding the confusions of SharePoint Site Group and Site Members. Basically when you create a modern Team Site via the GUI, what you are creating is also an “Office 365 Group” in the nature of this action your user account is automatically added to the SharePoint Site Collection(SC) …
Get client side Hero webpart PropertiesJson
First create a new page and configure your Hero webpart content as needed. Using PnP PowerShell connect to the site and get the page: Connect-PnPOnline -Url https://$tenant.sharepoint.com/sites/$siteUrl $homePage = Get-PnPClientSidePage -Identity $pagename $heroWebPart = $homePage.Controls | ? {$_.Title -eq "Hero"} $heroWebPart.PropertiesJson Copy this Json content and add it to the following code to update …
Continue reading Get client side Hero webpart PropertiesJson
SharePoint 101 – Importing Excel data to SharePoint Online List – CSOM
Business case: We have a lot of data in Excel files today, and we want to convert this to use SharePoint Online List, for obvious reasons like integration with @Flow and @PowerApps. With the right steps, the script below using SCOM will help you achieve this. Steps: In SharePoint Online Create a new List with …
Continue reading SharePoint 101 – Importing Excel data to SharePoint Online List – CSOM
CSOM error Exception calling “ExecuteQuery”
If you are trying to run CSOM against SharePoint Online and gets the error below Exception calling "ExecuteQuery" with "0" argument(s): "Cannot contact web site 'https://tenant.sharepoint.com/' or the web site does not support SharePoint Online credentials. The response status code is 'Unauthorized'. The cause of this issue: LegacyAuthProtocolsEnabled By default this property should be set …
Continue reading CSOM error Exception calling “ExecuteQuery”