How to Enable or Disable Comments in SharePoint Online List?

The “Comment” feature introduced in SharePoint Online modern lists allows users to comment on SharePoint Online list items. Commenting is a great way to collect feedback and keep track of changes in essential documents. However, in some cases, you may want to disable comments on a list to prevent unwanted content. This…

Read more

SharePoint Online: Bulk Add/Update/Delete Faster with New-PnPBatch in PowerShell

The PnP PowerShell Module brings the ability to perform bulk operations in batches in SharePoint Online using the New-PnPBatch cmdlet. This is extremely helpful when dealing with larger lists with create, edit or delete operations. The PnP Batch operations are accelerated and relatively reduce execution time and deliver faster performance. So now,…

Read more

SharePoint Online: Get All Items Created or Modified by a Specific User

Requirement: Find All List Items Created or Modified by a Specific User. PowerShell to Get All Files Created or Modified by a Particular User If you need to get a list of all items created or modified by a specific user in SharePoint Online, Here is the PowerShell script to do that!…

Read more

SharePoint Online: Archive Large List Items to another List using PowerShell

Requirement: Archive a large list by moving old items to a new list to improve performance. How to Archive List Items in SharePoint Online? When it comes to managing your SharePoint Online lists, you may need to archive old or unused items from time to time. How do we archive old lists…

Read more

SharePoint Online: Get List Item Count using PowerShell

Requirement: Get list item count in SharePoint Online using PowerShell. How to Get List Items Count in SharePoint Online? If you need to get a count of the items in a given SharePoint Online list, there are a few ways to do it. In this post, we’ll show you how to use…

Read more

SharePoint Online: PowerShell to Read List Items

Requirement: PowerShell to read list items in SharePoint Online. SharePoint Online: PowerShell to Read List Items In this blog post, we will be going over how to use PowerShell to read list items in SharePoint Online. We will cover the basics of using PowerShell to connect to SharePoint Online and then walk…

Read more

SharePoint Online: Delete All Unique Permissions from a Site Collection using PowerShell

Requirement: Remove unique permissions from a SharePoint Online site collection and restore permission inheritance from the parent. How to reset SharePoint permissions to default? If you’re ever in a situation where you need to reset SharePoint permissions but don’t know how to do it, this is the article for you! In this…

Read more

SharePoint Online: Find and Delete Duplicate List Items using PowerShell

Requirement: Find and Delete Duplicate Items in a SharePoint Online list using PowerShell. Find Duplicate Rows in a SharePoint Online List using PowerShell When you have a list with a lot of data, it’s easy for duplicates to sneak in. Maybe someone entered the same data twice, or an import process created…

Read more

SharePoint Online: Grant Permission to a List Item using PowerShell

Permissions are hierarchical in SharePoint from the Top Site collection to the List Item level. When items are created in a list or library, they inherit the permissions of that list or library. However, This inheritance can be broken and permissions can be applied directly to the items. To set unique permissions…

Read more

SharePoint Online: Export Permissions of a Site, List, or Item using PowerShell

Requirement: Export permissions applied to a SharePoint Site, List, or List Item to CSV report. PowerShell to Export Permissions of a Site, List, List Item in SharePoint Online Managing permissions is an important aspect of SharePoint Online site and list administration. Sometimes, you may need to export the permissions of a site,…

Read more