posts
Reset SharePoint unique permissions in Power Automate
Reset unique permissions on a SharePoint list item in Power Automate When a SharePoint item or folder has unique permissions, you can reset it to inherit permissions from its parent using the SharePoint REST API in a Power Automate flow.
Use the HTTP action Add a Send an HTTP request to SharePoint action and configure it like this:
Site Address: Your site URL Method: POST Uri: / _api/web/lists/getbytitle('@{item()?['FolderName']}')/items(@{item()?['ID']})/ResetRoleInheritance() This call tells SharePoint to remove the item’s unique permissions and revert it back to the parent list or folder permission inheritance.
posts
Copilot in SharePoint — Autofill Columns & List Creation
Summary The Knowledge Agent can autofill metadata for files and generate SharePoint lists from content. By default it processes the first 20 files; you can select additional files and re-run Autofill to apply the same extraction over more items.
How it looks Create the following autofill columns (suggested)
Claim ID Policy number Claimant name Address (UK cities) Phone & email Claim type (motor, health, property, travel, accident) Incident date & location Claim description Claim amount (£) Report date Signature Autofill behaviour Initially, the agent applies autofill to the first 20 files only:
posts
Import SharePoint Term Synonyms with PowerShell
This post provides a PowerShell script to import synonyms (labels) into a SharePoint term set using the PnP.PowerShell module. The sample using PnP PowerShell to import a csv file (same format you would use for import via UI for a term set but with an additional column for Synonyms delimited by |)
Prerequisites Install the PnP.PowerShell module (run as an admin): Install-Module PnP.PowerShell -Scope CurrentUser An Entra app ID or other authentication method with sufficient permissions to manage taxonomy/term store, or use interactive Connect-PnPOnline.