M365 Apps for Enterprise got a slightly new Design

Hi All,

I’ve updated my Microsoft 365 Apps for Enterprise to 2209. There are several lightly new Designs to see…

Outlook has also a refreshed Design and shows Tasks and ToDo in the Navigation Pane on the left Top.

The ToDo does not work here

I like the new Design of OneNote

Regards
Andres Bohren

Microsoft Teams PowerShell Module 4.7.1-Preview with AzureAD App and Certificate Authentication

Hi All,

A few days ago the Microsoft Teams PowerShell Module 4.7.1-Preview was released. For me a long awaited Feature with Azure AD App Authentication with a Certificate is now partly possible.

To install the Preview Side by Side with the 4.7.0 Module you need to add the -Force Parameter

Get-InstalledModule MicrosoftTeams
Find-Module MicrosoftTeams -AllowPrerelease
Install-Module MicrosoftTeams -AllowPrerelease -Force
Get-InstalledModule MicrosoftTeams -AllVersions

MSIdentityTools PowerShell Module 2.0.21 released

Hi All,

Microsoft has released another Version of theyr MSIdentityTools PowerShell Module to the Powershell Gallery.

Uninstall the old version of the PowerShell Module and install the newest one

Get-InstalledModule MSIdentityTools
Find-Module MSIdentityTools
Uninstall-Module MSIdentityTools
Install-Module MSIdentityTools

To see what commands are available use the following command

Get-Command -Module MSIdentityTools

It’s best to use PowerShell 7 with that Module

Get-MsIdAuthorityUri

Regards
Andres Bohren

Microsoft.Graph PowerShell Module 1.12.0 released

Hi All,

Let’s check the installed Version and what’s available on the PowerShell Gallery

Get-InstalledModule Microsoft.Graph
Find-Module Microsoft.Graph

To install the newest Version of the PowerShell Modules and also uninstalling the old Versions, you can use my GitHub Script

#Run Script directly from GitHub
$ScriptFromGitHub = Invoke-WebRequest "https://raw.githubusercontent.com/BohrenAn/GitHub\_PowerShellScripts/main/ExchangeOnline/GraphAPI/Cleanup-GraphModules.ps1"
Invoke-Expression $($ScriptFromGitHub.Content)

It takes a while until all Modules are installed. Wait until “Cleanup finished” is shown

ExchangeOnlineManagement 3.0.0 PowerShell Module is GA

Hi All,

Finally the ExchangeOnlineManagement PowerShell Module V3 has been released. You can find the newest Module in the PowerShell Gallery

It is REST Based and does not require WinRM Basic Authentication on the Client anymore

Get Installed Module and what is available in the PowerShell Gallery

Get-InstalledModule ExchangeOnlineManagement
Find-Module ExchangeOnlineManagement

Uninstall the old Module and install the new Module

Uninstall-Module ExchangeOnlineManagement -Force
Install-Module ExchangeOnlineManagement
Get-InstalledModule ExchangeOnlineManagement

How to set the DMARC Record for <tenant>.onmicrosoft.com Address

Hi All,

Did you know, that you can set DMARC Records for your onmicrosoft.com Address in M365?

In the M365 Admin Center go to Domains https://admin.microsoft.com/Adminportal/Home#/Domains

Select the onmicrosoft.com Domain

Select “DNS Records” and “Add record”

Now you can add your DMARC Configuration

Now you can Check with nslookup

nslookup -type=txt _dmarc.<tenant>.onmicrosoft.com

MSIdentityTools PowerShell Module v2.0.20 released

Hi All,

Microsoft has released the Version 2.0.20 of the MSIdentityTools PowerShell Module.

Check installed PowerShell Module Version and what is available in the PowerShell Gallery (Needs to run “As Administrator”)

Get-InstalledModule MSIdentityTools
Find-Module MSIdentityTools

Uninstall the old PowerShell Module and install the new one

Uninstall-Module MSIdentityTools
Install-Module MSIdentityTools

I would recommend to use PowerShell 7 with this Module

Get-Command -Module MSIdentityTools

Let’s use this command. Gives you the same Result as in my Blog where i explained how it’s calculated