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

Add And Manipulate Modern SharePoint Page Using PnP PowerShell

In this blog, we will look at the steps to add and manipulate Modern SharePoint page using PnP PowerShell. Adding a Modern page to the SharePoint site The Add-PnPClientSidePage command is used to add a modern page to the SharePoint site. Add-PnPClientSidePage -Name “NewPage” Output By default, Add-PnPClientSidePage creates an Article layout type. To create the Home layout type, we have to pass “Home” […]

SharePoint App Operations Using PnP PowerShell

PnP PowerShell can be used to automate the deployment, publishing, installing, upgrading and retracting apps in SharePoint online as well as SharePoint on-premises. In this blog, we will look at steps to get, add, install, deploy, update, remove and uninstall SharePoint app to Modern Site using PnP PowerShell. Adding and publishing app to the app catalog: Adding app (.sppkg file, .app […]