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 […]

Push Notification in Mobile for Email from Client

Prerequisites: An account with access to Microsoft Flow An Office 365 Outlook account The Microsoft Flow mobile app for Android, iOS, or Windows Phone Connections to Office, Outlook, and the push notification service Introduction: In this blog, we will create a flow that sends a push notification to your mobile if any new email arrives from a specific Client (email […]

Migrate SharePoint 2016 To SharePoint 2019 Environment Using Content Database Migration

This blog will help you learn how to back up a single content database in SharePoint 2016. And restore the database on your SharePoint 2019 server environment. SharePoint 2019 supports content database migration from the SharePoint 2016 environment into the SharePoint 2019 environment. Step – 1 First take a content database backup from SP 2016. Please follow the steps below. […]

Leave Approval App Using PowerApps And Microsoft Flow

In this blog, I will discuss how to create a leave request approval app using PowerApps and Flow in office365. I have created a generic/custom list in office365 named “Leave Request” which contains the columns mentioned below. Description Multiple lines of text Leave Type Choice Leave Status Single line of text Email Single line of text From these Email and […]

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 […]