202207s

PowerToys v0.60.0 released

Andres Bohren
Hi All, PowerToys v0.60.0 has been released a few days ago. Check out the Release notes - so much changes https://github.com/microsoft/PowerToys/releases/tag/v0.60.0 Regards Andres Bohren

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

Andres Bohren
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 https://docs.microsoft.com/en-us/powershell/module/exchange/get-tenantallowblocklistitems?view=exchange-ps Get-TenantAllowBlockListItems -ListType URL Get-TenantAllowBlockListItems -ListType URL | where {$_.Notes -match "Migrated"} I came across the "

Azure Active Directory Connect 2.1.15.0 released

Andres Bohren
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. Azure AD Connect: Version release history https://docs.microsoft.com/en-us/azure/active-directory/hybrid/reference-connect-version-history Microsoft Azure Active Directory Connect Download https://www.microsoft.com/en-us/download/details.aspx?id=47594 On the M365 Admin Center in the Health > Directory Sync Status you can find the new Version Number https://admin.microsoft.com/#/dirsyncmanagement Regards Andres Bohren

Report Teams Channels Emailaddresses with PowerShell

Andres Bohren
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. You can get the Channels but not the Emailaddress

Azure PowerShell Module Az 8.1.0 released

Andres Bohren
Hi All, A few Hours ago, Microsoft has released the Azure PowerShell Module AZ v8.1.0 Az 8.1.0 https://www.powershellgallery.com/packages/Az/8.1.0 Azure PowerShell release notes https://docs.microsoft.com/en-us/powershell/azure/release-notes-azureps?view=azps-8.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

Citrix Workspace App for Windows 2206

Andres Bohren
Hi All, A few Days ago, Citrix has released th Citrix Workspace App for Windows 2206. Citrix Workspace app 2206 for Windows https://www.citrix.com/de-de/downloads/workspace-app/windows/workspace-app-for-windows-latest.html What’s new https://docs.citrix.com/en-us/citrix-workspace-app-for-windows/about.html Regards Andres Bohren

Azure Active Directory Connect GroupWritebackV2

Andres Bohren
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. Group writeback in the Azure Active Directory admin center (preview) https://docs.microsoft.com/en-us/azure/active-directory/enterprise-users/groups-write-back-portal Azure AD Connect group writeback https://docs.microsoft.com/en-us/azure/active-directory/hybrid/how-to-connect-group-writeback-v2 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

Andres Bohren
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 https://security.microsoft.com/antimalwarev2 Internal- and ExternalSendernotifcations are gone.

Microsoft Team use CallerId from Callqueue or Autoattendant in Call App

Andres Bohren
Hi All, I've blogged about how an Agent can make Calls to the Outside with a CallQueue / Autoattendant Calling Id https://blog.icewolf.ch/archive/2021/10/08/microsoft-teams-call-queue-calling-id.aspx Now the User can make a call dorect from the Calls App in Teams Until now, the user had to go to the Teams and make the call from there to use the Calling Id of the Callqueue or Autoattendant. Now you can use directly the Teams Calls app and select the CallerId from the Dropdown.

PnP.PowerShell 1.11.0 released

Andres Bohren
Hi All, A few hours ago, Microsoft has released the V1.11.0 of the PnP.PowerShell Module to PowerShell Gallery PnP.PowerShell 1.11.0 https://www.powershellgallery.com/packages/PnP.PowerShell/1.11.0 PnP.PowerShell Changelog https://github.com/pnp/powershell/blob/dev/CHANGELOG.md 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