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

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

Get members from Office 365 Azure Ad using Graph API

1.Create a WPF application 2. Add the below mentioned code in the App.xaml.cs page. [code lang=”c”] private static string ClientId = “0b8b0665-bc13-4fdc-bd72-e0227b9fc011″; private static PublicClientApplication _clientApp ; public static PublicClientApplication PublicClientApp { get { return _clientApp; } } static App() { _clientApp = new PublicClientApplication(ClientId); }[/code] 3.In mainwindow.xaml Add a button for calling the graph and a multiline textbox to […]