In this blog, we will see how we can add a custom permission level in SharePoint site using PnP PowerShell. Also we will see how we can get a particular permission level and remove it from SharePoint site using PnP PowerShell. Add Custom Permission Level in SharePoint site: – The following command snippet will help you to create the permission level […]
Add and remove operation of Role Definition (Permission Level) in SharePoint site using PnP PowerShell.
Delete all files of a SharePoint library and send an email using Microsoft Workflow
Microsoft Flow is cloud-based software that allows creating an automated workflow. In this blog, we are going to create a Microsoft flow that will delete all files of a document library. Create A Microsoft Workflow 1. Go to the document library of a modern team site or communication site. If you are using classic TeamSite change it to a new […]
Copy Client-Side Page from one site to the other SharePoint site using PnP
In this post, I am going to show how to copy a modern page from one site to the other SharePoint site. we can achieve this using PnPOnline and CSOM. This code will copy the modern page into another site collection (destination location) and then, it will also copy all the page contents including web parts and other properties of […]
Create Classic TeamSite, Modern Team Site, Communication Sites And Retrieve All Site Collections From Tenant Using PnP PowerShell
In this blog, we are going to create classic TeamSite, modern team site and communication sites using PnP PowerShell. Also, we will see how to retrieve all site collections from the tenant and its subsites using PnP PowerShell. First, we need to connect to the Site. To perform connection add, First We Need to Connect to Site. To Perform Connection Add […]
Create A Microsoft Form In Office 365 Site
Microsoft Forms is nothing but a new O365 app. By using Microsoft Forms, we can create a survey, quiz, and pooling like work easily in O365. Using this we can get the responses of users, members for a different organization in a very simple and easy way. In office 365, we can create and Microsoft Forms and add required input […]
CRUD Operations on SharePoint List Using PnP PowerShell
PnP PowerShell can be used to Create, Update and Delete of lists in Sharepoint online as well as Sharepoint on-premises. In this blog, we will look at steps to Create, Update and Delete of SharePoint Generic list from site using PnP PowerShell. Connect to SharePoint site: Connect-PnPOnline -Url https://softreetechnology.sharepoint.com/sites/TestsiteCollBibuti Creating a Generic list: –> New-PnPList -Title TestGenList -Template GenericList Updating […]
Installation of SQL Server 2014 SP1
Seeing many people eager to install SQL Server 2014 SP1, gave me the perfect opportunity to post an article on “Installation of SQL Server 2014 SP1”. Go through the “below–mentioned” steps for installing SQL Server 2014. I have performed these steps for configuring the SharePoint 2016. Please extract the software and run the setup.exe as “Run as administrator” 2. […]
Add and Remove Operation of Content Types in SharePoint Site Using PnP PowerShell.
In this blog, we will see how we can add a custom content type in a SharePoint site using PnP PowerShell. Also, we will see how we can get a particular content type and remove it from the SharePoint site using PnP PowerShell. Add Custom Content Type in SharePoint site The following command snippet will help you to create the […]
Add And Remove Operation Of Custom Action In SharePoint Site Using PnP PowerShell
In this blog, we will see how we can add a custom action in SharePoint site using PnP PowerShell. Also, we will see how we can get particular custom action and remove it from the SharePoint site using PnP PowerShell. Add Custom Action:- In the following example, I have added a personal action menu in my SharePoint site. Get Particular […]
Get Site Collection from Web Application
In this blog, I will explain how to get all the site Collection under a SharePoint web application by the help of SharePoint Search. We can get the subsites under the site using CSOM easily but if we need to get all the site collections under a specific web application from a SharePoint farm then we can’t get it directly. […]