Using KeywordQuery with CSOM SharePoint Online

string username = "***********"; string pwd = "*********"; string siteURL = "**********"; ClientContext context = new ClientContext(siteURL); Web web = context.Web; SecureString pass = new SecureString(); foreach (char c in pwd.ToCharArray()) pass.AppendChar(c); context.Credentials = new SharePointOnlineCredentials(username,...

SPFx – Tenant Properties Web Part

0
Tenant Properties Tenant properties are used to store information, such as configuration settings, login information, or other information used by applications. These properties are stored in the application catalog site...

SPFx – Site Designs Manager

0
The Web Part This web part allows tenant administrators to manage site designs through a graphical interface. Only the tenant administrators are allowed to manage site designs, the web part verifies...

How to protect sensitive information in SharePoint Online using Purview Sensitivity Labels

This post explains how we can use Microsoft Purview Sensitivity Labels to protect sensitive information stored in a SharePoint Online site. What are Sensitivity Labels? Microsoft Purview Sensitivity Labels are a...

Set Default Sharing to “People with Existing Access” in SharePoint Online

This post will explain how to set default sharing of all SharePoint sites in the tenant to "Poeple with Existing Access". Introduction From a security standpoint, it is important to protect...

Set a SharePoint Site as Home Site using PowerShell

This post explains how to set a SharePoint to be your home site in a Microsoft 365 tenant using PowerShell. Introduction SharePoint Home Site is a feature available in SharePoint that allows...

How to Disable Social Bar (Like, Comment, Views, Save for later) in SharePoint Online...

This post will explain how to disable the Social Bar in SharePoint Online Modern Pages. Introduction The Social Bar is a feature in SharePoint Online that allows users like, comment, and...