Migrating to SharePoint Online can be transformative for organizations, enabling better collaboration, scalability, and access to cutting-edge features. However, the prospect of downtime during migration often causes apprehension, as it can disrupt operations and productivity. The good news? With a well-planned strategy and the right tools, you can migrate to SharePoint Online without experiencing downtime. Here’s how: 1. Plan Your […]
How to Migrate to SharePoint Online Without Downtime
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 […]
Creating a Dynamic Navigation Bar using SPFx Application Customizer
Building a Dynamic Navigation Bar using SPFx Application Customizer consists of several tasks starting from how to set your development environment and building the navigation component itself, deploying it to a SharePoint Online site, and configuring the dynamic navigation links. In this scenario, a detailed explanation on how to implement such a project using SPFx(Sharepoint Framework) and the Application Customizer […]
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 […]
Auto Populate SharePoint List Columns Based on Value in One Column using Power Automate
Do you want to auto populate SharePoint list columns based on the value in one column using Power Automate? In this case study, we will see how to auto populate SharePoint list columns based on value in one column using Power Automate. For example, I have a SharePoint list called Employee Directory, which contains the following columns: First Name Last […]
How to Check and Manage File Duplicates in SharePoint Using Power Automate
In this Power Automate tutorial, we will see how to check if a file exists in the SharePoint document library in Power Automate. Scenario: We have a SharePoint Document Library called ‘Attachments‘ like below. When a new email arrived with an attachment. We will get the attachments, and then we will check if the file exists in the SharePoint folder, […]
Implementing Multi-Threading With MaxDegreeOfParallelism For Uploading
In this blog, we will see how to use Multi-Threading to upload a bunch of files in SharePoint using CSOM. From the local path, we need to upload files to our document library. Using multi-threading we are simultaneously uploading files in batches, we may face, the request time out, forbidden exceptions, etc. To avoid such issues, use MaxDegreeOfParallelism Parameter. MaxDegreeOfParallelism Parameter […]
Multilingual Page Publishing Feature on Modern Communication site
Multilingual Page Publishing Feature is now available in the modern communication site in SharePoint. Multilingual publishing feature and choosing the additional languages support on that communication site which is created with the default language. After enabling this feature, the user can select languages according to the requirement and can create translation copies of the site pages. Here we will see […]
Copy Modern Page Within The Folder Using JSOM
In this blog, we are going to discuss how to copy a modern page within the same folder of a site collection. You can do it manually or programmatically. Follow the below steps to copy a client-side page. How to Copy a page manually Go to your site’s Site Pages. Select a page. Click on “Three dots” to present the […]