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) …

Continue reading SharePoint 101 – Confusions about SharePoint Online Site Group and Site Members Permissions

Fix Bluetooth on Windows 10 Fall Creators Update – Mac BootCamp

Just updated my Windows 10 BootCamp partition to Windows 10 Fall creators update, system running version 1709, build 16299.192. After the update my Bluetooth devices can't be used anymore, everything is connected drivers are up to date, bootcamp assistant up to date, but my Bluetooth mouse can only be use a couple of minutes, if …

Continue reading Fix Bluetooth on Windows 10 Fall Creators Update – Mac BootCamp

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