Home
M365 Dev Insights
Cancel

Tip of the day handlebar helper copyToClipboard

Tip of the day: Copy to clipboard button for Content query web part (SPFX) Are you looking for a way to add a copy to clipboard button to your SharePoint Content Query web part? Look no further th...

CI/CD for SPFx Deployment in Azure DevOps using M365 CLI

CI/CD for SPFx Deployment in Azure DevOps using M365 CLI

How it all began Gather around, my dear readers, for I have a saga to tell. A tale of brave warriors who embarked on a journey to conquer the treacherous land of CI/CD for SPFx deployment. This ...

SharingIsCaring. Create test users with Microsoft Graph API and Chat GPT

Summary This script will create test users with Microsoft Graph API and Chat GPT. Users can be created from a list of users or from a list of users generated by OpenAI API. Pre-requisites Mic...

Get teams tabs and export to CSV

Get teams tabs and export to CSV

Summary This script will locate all Teams having a Wiki and export the list to CSV Pre-requisites More about Microsoft Graph PowerShell SDK https://learn.microsoft.com/en-us/powershell/micros...

Tip of the day. Display multilanguage content

TIP: you can use sharepoint pagecontext to display multilanguage content in handlebar templates {{#compare pageContext.web.language '==' 1043}} Dit wordt weergegeven als de huidige taal is 10...

Tip of the day. Truncating handlebars

TIP: easiest way to truncate some text using handlebars {{ellipsis "<span>foo bar bar bar</span>" 7}} results in "foo bar..." Or when you need to be sure some item text value is ...

Get and compare documents hash from different tenants

Summary This script first connects to the first tenant using the Connect-PnPOnline cmdlet, then uses the Get-PnPFile cmdlet to retrieve the file in question. It then connects to the second tenant ...

Tip of the day. Respnsive grid using CSS

TIP: Responsive grid using CSS almost the most common CSS problem to any project I had is mobile responsiveness. Many ways to do it using @media attribute, but I found most useful oneliner to make...

Retrieve Message Centre announcements and post to MS Teams channel

Summary This script allows you to connect to your SharePoint Online tenant and retrieve Message Centre announcements. It then connects to Microsoft Teams and loops through the announcements, posti...

Tip Of The Day. SPFx Localization extension

TIP: SPFx Localization extension for visual studio code Question - Why would you need such a thing? Answer: Check if any translations missing in SPFx project. On hover of parameter you can ...