Change Regional setting using PnP PowerShell

Introduction               Changing Regional settings of a SharePoint Online site manually is straight forward but if someone needs to change the regional settings for all the sites then it will be a time-consuming procedure.               So here I have tried to make the task a bit easier. I have made a PowerShell script to change the regional setting in the […]

Get,Add & Remove Navigation Using PnP-Powershell

Introduction :     In this blog, I have discussed how to add, retrieve, and delete the SharePoint navigation menu using PowerShell. Follow the steps to get the result. Steps : 1. Get the Navigation Node 2. Add the Navigation 3. Remove/Delete the Navigation    In this blog, added the coding of HubNavigation Menu but you can also Add, Retrieve and […]

SharePoint Permission Tasks Using PnP PowerShell

In this blog, we are going to discuss about the SharePoint permission in different scenarios like how to assign & remove permission to a user, how to assign unique permission. Also, we will retrieve the users and the corresponding role associated with them. SharePoint Permission is used for assigning different types of roles/permission to different users. A user can perform […]

Copy Sites Page From One Site to Another Using PNP PowerShell

In this blog, we are going to discuss how to copy a modern page from one site collection to another site collection using PNP PowerShell. To successfully copy a modern page, you have to follow the below steps: PowerShell code Run the script PowerShell code Instruction: In this code, first we have to set the credential of the SharePoint. Then […]

Create Modern Page and Add Webpart to It Using PnP PowerShell

In this blog, we will discuss how we can create a modern site Page programmatically using PnP online. Then we will add a hero Webpart programmatically to it. To perform the procedure, we must follow the below steps. Step-1: – First, we have to open the windows PowerShell and then run the command “Connect-PnPOnline -Url   providesiteUrl”. Then run ISE as […]