Tag Archives: Hints

Ownerless group policy configuration failed

If you are seeing “Ownerless group policy configuration failed” and “Please try again.” error message: there might be some different reasons: Note: Groups admin when configuring the policy can see warning message “You don’t have permissions to save changes”. No worries 🙂 => You will be able to save changes 🙂 Video tutorial on the […]

How to create an old document in SharePoint

Sometimes, mostly during PoC or testing policies like retention policy or lifecycle policy you would need some documents created and updated weeks, months or even years ago. But if you create or upload a document in SharePoint library – it will be just a regular new document. So, how to get old documents in the […]

Microsoft 365 Q&A

Q: What permission or role is required to get search Usage analytics reportsA: To see Microsoft 365 Search and intelligence usage analytics reports you’d need “Global reader” or “Search editor” role. Q: What permission or role is required to get access to Search Feedback under Microsoft 365 admin center – Settings – Search & intelligence […]

Track SharePoint App-only Service Principals in Microsoft 365

Update (May 2023): You can use Get-PnPAzureACSPrincipal to returns the lists of all Azure ACS principals installed in your Tenant including subsites. Scenario Developers in the organization can use both – Azure Apps and SharePoint Apps to work with SharePoint sites in their “daemon” applications. It is recommended to use Azure apps so, you want […]

Power Apps functions/code hints

OnNew:Set(SharePointFormMode, “NewForm”); NewForm(formNew); Navigate(screenNew, ScreenTransition.None) OnEdit:Set(SharePointFormMode, “EditForm”); EditForm(formEdit); Navigate(screenEdit, ScreenTransition.None) OnView:Set(SharePointFormMode, “ViewForm”); ViewForm(formView); Navigate(screenView, ScreenTransition.None) OnSave – If(SharePointFormMode=”CreateForm”, SubmitForm(CreateItemForm), If(SharePointFormMode=”EditForm”, SubmitForm(EditItemForm))) OnCancel – If(SharePointFormMode=”CreateForm”, ResetForm(CreateItemForm), If(SharePointFormMode=”EditForm”, ResetForm(EditItemForm)))

How to delete a large SPO list or all/some items in a large SPO list

Scenario: You have a large (>5k items) list in SharePoint Online you need to clean-up, for instance: Deleting a large SharePoint Online list There was a problem in SharePoint Online – you could not delete a large list – you had to remove all items first, but removing all items was also a challenge. Microsoft […]