How SharePoint Online Can Streamline Your Business Operations in 2025

The digital transformation wave is reshaping how businesses operate, making efficiency, collaboration, and security more critical than ever. SharePoint Online has become a cornerstone for modern enterprises, enabling seamless document management, automated workflows, and enhanced team productivity. With its cloud-based infrastructure and deep integration with Microsoft 365, SharePoint Online continues to revolutionize business operations in 2025. Let’s explore how your […]

Enhancing SharePoint Online with SPFx: Building Interactive Panels Using React and Fluent UI

In contemporary SharePoint websites, opening a panel through a custom SPFx (SharePoint Framework) solution helps users view extra content, forms, or interactive features without leaving the page. Using SPFx and React, a panel can be added to the SharePoint experience otherwise debugging obstacles enhancing the UI and providing a non-disruptive way of presenting detailed information. This technique can be utilized […]

How to Migrate to SharePoint Online Without Downtime

Migrating to SharePoint Online can be transformative for organizations, enabling better collaboration, scalability, and access to cutting-edge features. However, the prospect of downtime during migration often causes apprehension, as it can disrupt operations and productivity. The good news? With a well-planned strategy and the right tools, you can migrate to SharePoint Online without experiencing downtime. Here’s how: 1. Plan Your […]

Creating a Dynamic Navigation Bar using SPFx Application Customizer

Building a Dynamic Navigation Bar using SPFx Application Customizer consists of several tasks starting from how to set your development environment and building the navigation component itself, deploying it to a SharePoint Online site, and configuring the dynamic navigation links. In this scenario, a detailed explanation on how to implement such a project using SPFx(Sharepoint Framework) and the Application Customizer […]

How to Add an External User to a SharePoint Site

In this blog I discuss a few steps on how to add an external user to the SPO site and how can we access a document/file by using an external user. External users are not a part of an organization, so we can’t add them to Site Permissions directly. We must follow the below steps so we can allow these […]

How to extract modern page webparts using PnP Core

Get all Client Side Webparts from a SharePoint Modern page using PNP Core / How to extract modern page webparts using PnP Core In CMOS we can get the webparts from a page using ‘Microsoft.SharePoint.Client.WebParts.LimitedWebPartManager’ object. We can get all webparts information by using ‘LimitedWebPartManager’ except for the modern/client site pages. We can get modern page webparts by using OfficeDevPnP.Core. […]

Retrieve Sharing Links Information For A SharePoint Item Using CSOM

There is no direct method present in item object to get /retrieve the sharing links information, we can get item sharing links information by using ‘ObjectSharingInformation’ class. We can get the ‘AnonymousEditLink’, ‘AnonymousViewLink’ and ‘SharedWithUsersCollection’ details using ‘ObjectSharingInformation’. In my below example I have mentioned all the steps how to retrieve all sharing links details and Shared User details for […]

Update a SharePoint ListItem without increasing its item file version using SharePoint Client Side Model(CSOM).

Basically, when we are trying to update a SharePoint ListItem/Document then the item/file version is increased according to the list versioning. In the Server-side object model, we can update a ListItem without increasing its file version by setting ‘SystemUpdate’ as false. But in CSOM ‘SystemUpdate’ property is not supported. In this below code block, I have mentioned how we can […]