Microsoft Teams Camera Brightness and Soft-Focus Filters

Andres Bohren
Hi All, Did you notice, that you can adjust the Camera Settings in Teams? I am running Teams in the Preview Mode and have the following Settings there: "Brightness" and "Soft focus" I think that's a good improvement. You can even activate that when you join a Meeting. Click on the gear Icon and then the change it in the Device Settings Menu on the right hand side. Regards Andres Bohren

Microsoft.Graph PowerShell Modules 1.9.5 released

Andres Bohren
Hi All, Yesterday Microsoft has released a new Version of theyr Microsoft.Graph PowerShell Modules. Just a few days after releasing 1.9.4... I like the fact that they fixed a bug in "user-agent", but maybe it shows somee missing quality control. Microsoft.Graph 1.9.5 https://www.powershellgallery.com/packages/Microsoft.Graph/1.9.5 Release notes https://github.com/microsoftgraph/msgraph-sdk-powershell/releases Check the installed module and what's published in PowerShell Gallery Get-InstalliedModule Microsoft.Graph Find-Module Microsoft.Graph If you uninstall the Microsoft.Graph Module, you don't uninstall the sub modules Uninstall-Module Microsoft.

MicrosoftTeams PowerShell Module 4.2.0 released

Andres Bohren
Hi All, Did you notice, that there is already a new Microsoft Teams PowerShell Module Available? Microsoft Released 4.2.0 into GA.Two Weeks ago they published 4.1.0. I like the Fact that they fixed issues. On the other Hand, they might invest a bit more in Quality Control and don't have to release that often. For Installing use "Install-Module". If you want Side-By-Side (Multiple Versions of the Module) then you need to use the "

Visual Studio Code unins000.exe Access denied

Andres Bohren
Hi All, This week i was surprised with the following Error Message when Visual Studio Code, tried to update to the newest version. So i've checked the Permissions C:\Users\%username%\AppData\Local\Programs The User don't had "Change" Permissions on the Directory I've pushed the Permissions to the Subdirectorys and Files below. After that, the Upgrade or Installation of Visual Studio Code was flawless Regards Andres

Citrix Workspace App for Windows 2204.1

Andres Bohren
Hi All, Last Week, Citrix released a new Version of the Citrix Workspace App for Windows. Citrix Workspace App 2204.1 for Windows https://www.citrix.com/de-de/downloads/workspace-app/windows/workspace-app-for-windows-latest.html Release Notes https://docs.citrix.com/en-us/citrix-workspace-app-for-windows/about.html Regards Andres Bohren

Rename UPN of specific Mailbox Types

Andres Bohren
Hi All, Recently i had a customer where the Room Mailboxes had still the Active Directory UPN Suffix. But that needed to Change in Order to align with Exchange Hybrid / Exchange Online. So i did write a small PowerShell Script to fix that The Script can also be found at my GitHub Repo https://github.com/BohrenAn/GitHub_PowerShellScripts/blob/main/Exchange/RenameUPN.ps1 ############################################################################### # Rename UPN from specific Mailbox Type # 11.04.2022 V0.1 - Andres Bohren - Initial Version

UserCallingSettings in Microsoft Teams Admin Center (TAC)

Andres Bohren
Hi All, Since a few days you can view and set the UserCallingSettings in Microsoft Teams Admin Center (TAC). It seems that the "if unanswered" (VoiceMail in my case) Setting is not yet represented correctly. Teams Client > Settings > Calls Connect-MicrosoftTeams Get-CsUserCallingSettings -Identity a.bohren@icewolf.ch Regards Andres Bohren

You can't use TenantAllowBlockList when connected to Security and Compliance

Andres Bohren
Hi All, Recently i was stumbling across a weird behaviour regarding Exchange Online Protection (EOP) with TenantAllowBlockListItems. Get-TenantAllowBlockListItems https://docs.microsoft.com/en-us/powershell/module/exchange/get-tenantallowblocklistitems?view=exchange-ps Connect-ExchangeOnline Get-TenantAllowBlockListItems -ListType Url -Block Get-TenantAllowBlockListItems -ListType Url -ListSubType AdvancedDelivery Represented with the following Command Get-TenantAllowBlockListItems -ListType Url -Block Advanced Delivery - Represented with the following Command Get-TenantAllowBlockListItems -ListType Url -ListSubType AdvancedDelivery Then i connected to Security and Compliance Connect-IPPSSession Get-TenantAllowBlockListItems -ListType Url Error: Das Format des in den Parameter objectId eingegebenen Werts ist ungültig.

M365 group-based License (step-by-step)

Andres Bohren
Hi All, Most Organizations i know use M365 group-based Licensing. It fit's theyr provisioning Processes because it's just adding a User to another Active Directory Group. As they are already used to do. What is group-based licensing in Azure Active Directory? https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/active-directory-licensing-whatis-azure-portal Licensing requirements You must have one of the following licenses for every user who benefits from group-based licensing: Paid or trial subscription for Azure AD Premium P1 and above Paid or trial edition of Microsoft 365 Business Premium or Office 365 Enterprise E3 or Office 365 A3 or Office 365 GCC G3 or Office 365 E3 for GCCH or Office 365 E3 for DOD and above

Extract M365 Licensing GUID's and Product names from MS Website

Andres Bohren
Hi All, For a Project i wanted to Extract the M365 License and ServicePlan Guids from the Website below Product names and service plan identifiers for licensing https://docs.microsoft.com/en-us/azure/active-directory/enterprise-users/licensing-service-plan-reference The whole Script is published at my GitHub Repo https://github.com/BohrenAn/GitHub_PowerShellScripts/blob/main/AzureAD/ExtractGUIDandLicensesFromWebsite.ps1 Why not using PowerShell for that $URI = "https://docs.microsoft.com/en-us/azure/active-directory/enterprise-users/licensing-service-plan-reference" $WebRequest = Invoke-WebRequest -URI $URI $WebRequest | get-member As you can see, with PowerShell 7 the Property "ParsedHtml" is missing. It somehow has a dependency to the local installed Browser.