Change List/Library to New/Modern Experiences using PowerShell

In this blog we are going to discuss about how to convert the List/Library to classic version in Communication site. We can convert it manually or programmatically using PowerShell.First we are converting the Modern list/library to classic experience of a site collection and then we will see how to covert classic list/library to modern experiences. We can do this through […]

Tabbed Form in Power Apps

Introduction: In this project we have developed a power app that has tabbed form structure. Most commonly we have used simple lay out while configuring the form view. But in this app the form layout will display something different like customize tabbed form. Follow the following steps as mentioned below: At first create a SharePoint list as mentioned in the […]

Add, Update and Remove web part using csom

Introduction- Web parts are the building blocks of the pages by which you can modify the content, appearance and behavior of pages of a SharePoint site. In this blog we are going to discuss How to Add, Update and Remove the web part using csom, here I have used Content Editor Web Part in Wiki page. Adding the web part […]

Add, Get and Delete Quick Launch Navigation using c#

In this blog, we have discussed about adding, retrieving, and deleting the SharePoint online quick launch navigation menu using the c# server Object model. Follow the below coding to get the result. Add new term in quick launch:           Add the below code in your Program.cs. namespace GetNavigationNode {     class Program     {         static void Main(string[] args)         […]

How to enable and disable MFA using PowerShell

Introduction-In Office 365, multifactor authentication (MFA) is a security feature in which it authenticates whether the user who trying to access the exchange online is the same user who claims the account. MFA use the user’s phone number or mobile app to connect the Office 365. Providing the steps below to enable MFA.   Step1-To run Office 365 to remote […]

What is PowerApps Collection and how to create a Collection in PowerApps?

In simple words, collection by mean is a group of items. PowerApps provides most useful feature i.e. PowerApps Collection. It is an array that is use to keep data in PowerApps memory.  Create a Collection in PowerApps Syntax – Collect (Collection Name, record(s)) Here Collect = this is the default function name provided by PowerApps to create the collection. Collection […]

Save a list as template in SharePoint online using PowerShell

Introduction- In SharePoint, the list templates provide re-usability of columns without recreating it on every single site. For e.g. I have created a custom list which name is Project , in a SharePoint site collection with all relevant columns, Now I want this list structure in other site collections, without recreating the list on every single site. Steps to save […]