January 2025

How to Migrate SharePoint Online Content to Another Tenant: All Available Options

Moving SharePoint content between tenants — for a merger, acquisition, or restructuring — has more options than it used to, ranging from a manual drag-and-drop to a native Microsoft-managed pipeline. What you keep (permissions, version history, workflows) varies a lot between them, which is the real deciding factor, not just price. In this post: Native […]

How to Migrate SharePoint Online Content to Another Tenant: All Available Options Read More »

SPFx: Check if User is an Admin or an Owner is SharePoint

Introduction When working with SharePoint Framework (SPFx), there are times when you need to determine whether a user has administrative privileges. This is especially useful in scenarios where certain UI elements or functionalities should only be accessible to administrators. In this blog, we’ll explore how to check if a user is an admin using the

SPFx: Check if User is an Admin or an Owner is SharePoint Read More »

XSLT: Transforming XML with Style

Extensible Stylesheet Language Transformations (XSLT) is a powerful tool for transforming XML data into different formats, including HTML, plain text, and even other XML structures. It provides a structured way to apply styles and modify XML content, making it essential in various domains where XML plays a critical role. In this blog, we will explore

XSLT: Transforming XML with Style Read More »

How to Export SharePoint Site Users to an Excel Spreadsheet

When managing a SharePoint On-Premises environment, there are scenarios where you need to export site users into an Excel spreadsheet. Whether it’s for auditing, troubleshooting, or monitoring purposes, exporting users can help administrators ensure their sites are secure and compliant. In this blog, we’ll discuss how to achieve this using PowerShell scripts with SharePoint Add-Ins

How to Export SharePoint Site Users to an Excel Spreadsheet Read More »

Switching Between Classic and Modern Views in SharePoint

SharePoint is a versatile platform that has evolved significantly over the years. With the introduction of the modern experience, users benefit from a responsive design, enhanced user interface, and seamless integration with Office 365 features. However, there are times when you may need to switch between the classic and modern views due to compatibility, user

Switching Between Classic and Modern Views in SharePoint Read More »

Handlebars.js: The Templating Engine You Didn’t Know You Needed

Handlebars.js separates HTML structure from the JavaScript that fills it with data — instead of building markup with string concatenation, you write a template with {{placeholders}} and compile it against a data object. Here’s what it actually looks like, where it fits, and where a real framework is the better call instead. In this post:

Handlebars.js: The Templating Engine You Didn’t Know You Needed Read More »

Get SharePoint Site Users: Implementations and Use Cases

Managing users in SharePoint is a core part of ensuring that your site runs efficiently and securely. Whether you’re auditing user access, automating workflows, or simply trying to understand who has access to your site, knowing how to retrieve and query SharePoint site users is invaluable. In this post, I’ll walk you through the different

Get SharePoint Site Users: Implementations and Use Cases Read More »

Breaking SharePoint Permission Inheritance: What It Is and Why It Matters

Every site, library, list, and item in SharePoint inherits its permissions from its parent by default — that’s what keeps permission management manageable. Breaking that inheritance lets you set unique permissions at a specific level instead, for the cases where “everyone who can see the parent can see this too” isn’t the right answer. For

Breaking SharePoint Permission Inheritance: What It Is and Why It Matters Read More »

A Comprehensive Guide to SharePoint Site Design

In this post: The steps · Automating repeatable setup with Site Scripts · On step 7 (permissions) specifically · Common mistakes worth avoiding · When would you actually use this? · Helpful references The steps Define the purpose first. Project management, company-wide comms, or external collaboration each want a different structure — decide before building,

A Comprehensive Guide to SharePoint Site Design Read More »

Understanding SharePoint List Types: A Guide for Developers

SharePoint lists work like a lightweight database — each list is a table, columns are metadata fields — but built for collaborative, permission-aware environments rather than raw relational data. Here’s the built-in list types, the template IDs for creating them programmatically, and how to work with them in code. In this post: Built-in list types

Understanding SharePoint List Types: A Guide for Developers Read More »