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...

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...

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 – 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...

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...
Learning

SharePoint and Office 365 Learning Resources

Hello, Over the past few months, I have been gathering some useful SharePoint and Office 365 learning resources that I would like to share with you. Learning Resources Here is the list...