In this blog, we are going to retrieve all the webparts present in a modern site page. Also, we will see how to add different web parts and delete a web part from a modern site page using PnP PowerShell. First, we need to connect to the site. To perform the connection, add the following lines. $siteURL = Read-Host “Provide […]
Add, Remove, And Get All Web Parts From Modern Site Page Using PnP PowerShell
How To Enable And Disable MFA Using PowerShell
In Office 365, multifactor authentication (MFA) is a security feature in which it authenticates whether the user who tries 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, Step 1 To run Office 365 to […]
How To Fetch Items From SharePoint List To PowerApps Gallery, Calculate
In this article, I’m going to demonstrate how SharePoint List Records are fetched to the PowerApps Gallery Control and, in the gallery we’ll be calculating some values as per the requirement, then those calculated values will be updated again to the List. STEP 1 – Creating a List List Name: Calculation ItemName: (Single Line Text) Quantity: (Number) UnitPrice:(Number) Total:(Number) Create […]
How to Add, Remove, And Get All Web Parts From Modern Site Page Using PnP PowerShell
In this blog, we are going to retrieve all the webparts present in a modern site page. Also, we will see how to add different web parts and delete a web part from a modern site page using PnP PowerShell. First, we need to connect to the site. To perform the connection, add the following lines. $siteURL = Read-Host “Provide […]
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 […]