All Posts

How do I rename a SharePoint Online site using PowerShell?

A SharePoint Online administrator can change the SharePoint Online site address. The interesting part of this feature is that in many situations Microsoft already considered how to limit the impact...

How do I create an Office 365 modern site without Group in PowerShell?

I created a script using the SharePoint Online Management Shell to create a modern site without an Office 365 Group associated with it.

How do I rename a SharePoint Online site using PowerShell?

A SharePoint Online administrator can change the SharePoint Online site address. The interesting part of this feature is that in many situations Microsoft already considered how to limit the impact...

How do I authenticate against Azure AD using React, MSAL.JS and ASP.NET Core 3.0?

Microsoft is evolving the Azure Active Directory (v1.0) endpoints into the new Microsoft identity platform (v2.0). You should give it a try and consider a move to this new platform....

Change the token lifetime of an Azure AD application

Azure AD allows to configure custom token lifetime policies for the access and refresh tokens. In your tenant you might have the token lifetime policy set to 1 hour for...

Working with users using the Yammer REST API and PowerShell

In this post I would like to go through some of the endpoints in the Yammer REST API handling user profiles in a network.

Manage the group memberships using the Yammer REST API and PowerShell

This post will show how to use the Yammer REST API for managing the group memberships of a group. You can find the documentation of the Yammer REST API here....

Get all Yammer users through the Yammer REST API with PowerShell

The Yammer REST Api allows you to return users through the interface described here. A call to that API returns a batch of 50 users. You need to call multiple...

Working with groups using the Yammer REST API and PowerShell

The Yammer REST API is well documented here. On the other hand, you might miss some documentation regarding some endpoints on that page. For example, there is no notion about...

Get all Yammer messages through the Yammer REST API with PowerShell

The Yammer REST Api allows you to return messages through the interface described here. A call to that API returns a batch of 20 messages that can be limited to...

Create a custom connector with an OpenAPI definition (aka Swagger) from an ASP.NET Core solution

You can download the source code for this series directly from my GitHub repository. The name of this sample project is 02. CustomConnectorSwagger.

Create a custom connector that accesses an anonymous REST API

You can download the source code for this series directly from my GitHub repository. The name of this sample project is 01. SimpleRESTApi.