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...
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...
SharePoint Framework (SPFx) Learning Guide
Hello,
Are you new to SharePoint or do you just want to learn how to develop SharePoint modern solutions? Then, you came to the right place!
This is a guide to...
SPFx – Site Designs Manager
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...
SPFx – Tenant Properties Web Part
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...
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...
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,...