Safe Links Block list have been moved to Tenant Allow Block List (TABL)

Hi All,

The M365 Defender for Office Safe Links Block list have been moved to Tenant Allow Block List (TABL)

If you click on “Global Settings”

https://security.microsoft.com/safelinksv2

you can see that the Block List have been Migrated

Let’s check the Tenant Allow/Block List

https://security.microsoft.com/tenantAllowBlockList

You can view the TenantAllowBlockList Items with the following Exchange command

Get-TenantAllowBlockListItems -ListType URL 
Get-TenantAllowBlockListItems -ListType URL | where {$_.Notes -match "Migrated"}

Azure Active Directory Connect 2.1.15.0 released

Hi All,

Just a few Hours ago, Microsoft has released a new Version of Azure Active Directory Connect with a lot of Butfixes and some Functional changes.

Let’s check the Details with PowerShell

Get-ADSyncAutoUpgrade
Get-ADSyncAutoUpgrade -Detail

Installation

On the M365 Admin Center in the Health > Directory Sync Status you can find the new Version Number

Report Teams Channels Emailaddresses with PowerShell

Hi All,

A Teams Channel does not have an Emailaddress until you click on “Get Emailaddress”

Note that this Emailaddress is the following Format <ID>.<tenant>.onmicrosoft.com@>region>.teams.ms

You can also delete the Emailaddress from here.

Note: If you remove and add a new Address it will get another ID

You have to confirm the removal of the Teams Channel Emailaddress

Can you read out the same with the MicrosoftTeams PowerShell.

Azure PowerShell Module Az 8.1.0 released

Hi All,

A few Hours ago, Microsoft has released the Azure PowerShell Module AZ v8.1.0

Check your current installed Module and what is available on PowerShell Gallery

Get-InstalledModule AZ
Find-Module AZ

I’ve published a Script in my GitHub Repo to uninstall the old Modules and install the new Modules

https://github.com/BohrenAn/GitHub_PowerShellScripts/blob/main/AzureAD/Microsoft.Graph_HowToStart.ps1

Or you can run the Script below to directly execute that Script

Azure Active Directory Connect GroupWritebackV2

Hi All,

It’s been a while since i blogged about Group Writeback. Now there are some new Scenarios in the Preview: AAD Connect GroupWritebackV2.

I have GroupWriteback enabled and it looks like this

Let’s check the current Settings

Import-Module  'C:\Program Files\Microsoft Azure AD Sync\Bin\ADSync\ADSync.psd1'
Get-ADSyncAADCompanyFeature

Let’s enable GroupWritebackV2

Set-ADSyncAADCompanyFeature -GroupWritebackV2 $true

In Azure AD Admin Center you have to add the Columns

Defender for Office365 Changes in Anti-Malware Notifications

Hi All,

There has been a change in the Defender for Office 365 Anti-Malware Policy notifications.

Summary: internal and external Notifications are gone and Action is changed only to “Quarantine” or “Reject” (with NDR).

Not much to see on the M365 Roadmap

But there are more Details in the M365 Admin Portal in Message Center

In the M365 Defender Portal you can review the Settings

Internal- and ExternalSendernotifcations are gone. Only two Settings are available

PnP.PowerShell 1.11.0 released

Hi All,

A few hours ago, Microsoft has released the V1.11.0 of the PnP.PowerShell Module to PowerShell Gallery

Check the installed Version and the Version in PowerShell Gallery

Get-InstalledModule PnP.PowerShell
Find-InstalledModule PnP.PowerShell

Uninstall the old Module and install the new Version of the Module

Uininstall-Module PnP.PowerShell
Install-Module PnP.PowerShell

Now you can use the PowerShell Module. Some example code below.

Connect-PnPOnline -Url "https://icewolfch.sharepoint.com/sites/DemoTemplate/" -Interactive
Get-PnPContext
Get-PnPFolder -Url "Freigegebene Dokumente/Project/Script"
Get-PnPFileVersion -Url "Freigegebene Dokumente/Project/Script/AADUsers.csv"