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

MicrosoftTeams PowerShell Module 4.5.0 released as GA

Andres Bohren
Hi All, Yesterday Microsoft hast release the MicrosoftTeams PowerShell Module 4.5.0 as GA (Generally Available) in the PowerShell Gallery. MicrosoftTeams 4.5.0 https://www.powershellgallery.com/packages/MicrosoftTeams/4.5.0 Release Notes https://docs.microsoft.com/en-us/MicrosoftTeams/teams-powershell-release-notes Find the PowerShell Module in the PowerShell Gallery and install it (force is only needed as i have multiple Modules in paralell installed) Find-Module MicrosoftTeams Install-Module MicrosoftTeams -Force When you import the Module you can see the Version Import-Module MicrosoftTeams Get-Module Testing Connect-MicrosoftTeams Get-Team Get-CsOnlineUser -Identity a.

MSIdentityTools PowerShell Module v2.0.14 released

Andres Bohren
Hi All, A few hours ago, Microsoft has released a new Version of the MSIdentity Tools PowerShell Module. MSIdentityTools https://www.powershellgallery.com/packages/msidentityTools/2.0.14 Search the PowerShell Gallery and install the PowerShell Module Find-Module MSIdentityTools Install-Module MSIdentityTools To view the Commands of the Module use the command below Get-Command -Module MSIdentityTools You need to connect with Microsoft Graph first. For instance you can check if an emailadress has a MicrosoftAccount Connect-MgGraph Get-MsIdHasMicrosoftAccount -Mail a.bohren@outlook.com

Git 2.37 has been released

Andres Bohren
Hi All, A few days ago, git 2.37 has been released. I just came across that news today. Highlights from Git 2.37 https://github.blog/2022-06-27-highlights-from-git-2-37/ Release Notes https://github.com/git/git/blob/v2.37.0/Documentation/RelNotes/2.37.0.txt I have git 2.35.3 installed git --version I've downloaded the 64 Bit exe Installer Download for Windows https://git-scm.com/download/win After the Installation i checked the version again git --version Regards Andres Bohren

PowerShell Module Microsoft.Online.SharePoint.PowerShell 16.0.22615.12000 released

Andres Bohren
Hi All, A few hours ago, Microsoft has released the Microsoft.Online.SharePoint.PowerShell 16.0.22615.12000 PowerShell Module Microsoft.Online.SharePoint.PowerShell 16.0.22615.12000 https://www.powershellgallery.com/packages/Microsoft.Online.SharePoint.PowerShell/16.0.22615.12000 Check the installed Version and what is available from the PowerShell Gallery Get-InstalledModule Microsoft.Online.SharePoint.PowerShell Find-Module Microsoft.Online.SharePoint.PowerShell Uninstall the old Version and install the new Version of the Module Uninstall-Module Microsoft.Online.SharePoint.PowerShell Install-Module Microsoft.Online.SharePoint.PowerShell Get-InstalledModule Microsoft.Online.SharePoint.PowerShell Connect to Sharepoint Online Connect-SPOService -Url https://icewolfch-admin.sharepoint.com Get some Settings Get-SPOTenant | fl Regards Andres Bohren