MicrosoftTeams PowerShell Module 7.3.0 released

Hi All,
A day ago, Microsoft has released the MicrosoftTeams PowerShell Module 7.3.0 to the PowerShell Gallery.
- PowerShell Gallery MicrosoftTeams 7.3.0
Read more details in the Release Notes
- Adds Notify parameter to [Set|Remove]-CsPhoneNumberAssignment cmdlets.
- Releases [New|Set|Remove|Get|Grant]-CsTeamsPersonalAttendantPolicy cmdlets.
- Adds OCDIRedirect parameter to [Set|Remove]-CsTeamsUpdateManagementPolicy.
- Adds AppName output attribute to Get-M365TeamsApp and Get-AllM365TeamsApps cmdlets.
- Contains a new implementation of [Get|Set]-CsTeamsAcsFederationConfiguration. Functionality remains the same as previous implementation.
- Adds HideBannerForAllowedAcsUsers and LabelForAllowedAcsUsers parameters to Set-CsTeamsAcsFederationConfiguration cmdlet.
- [BREAKING CHANGE] Removes Get-CsOnlinePowerShellEndpoint and Set-CsInternalOnlinePowerShellEndpoint cmdlets.
- Adds MainlineAttendantFlow and MainlineAttendantTarget parameters to New-CsAutoAttendantMenuOption cmdlet.
- Adds EnableMainlineAttendant parameter to [New|Set]-CsAutoAttendant cmdlets.
- Releases New-CsMainlineAttendantAppointmentBookingFlow, New-CsMainlineAttendantQuestionAnswerFlow and Get-CsMainlineAttendantFlow cmdlets.
- Releases [Get|Set]-CsPersonalAttendantSettings cmdlets.
- Fixes the error with Set-CsTeamsSettingsCustomApp cmdlet.
- Adds UseMicrosoftECDN and RecordingForTownhall parameters to [New|Set]-CsTeamsEventsPolicy cmdlets.
- Adds ExplicitRecordingConsent parameter to [New|Set]-CsTeamsCallingPolicy cmdlets.
- Adds EduGenerativeAIEnhancements and AutoShareFilesInExternalChats parameters to [New|Set]-CsTeamsMessagingPolicy cmdlets.
I am using the new PSResourceGet here instead of the PowerShellGet commands.
Check installed Module and what’s available in the PowerShell Gallery
Get-InstalledPSResource -Name MicrosoftTeams -Scope CurrentUser
Find-PSResource -Name MicrosoftTeams -Prerelease
Uninstall the old Module and install the newest Module
Uninstall-PSResource -Name MicrosoftTeams -Scope CurrentUser
I’ve updated the M365PSProfile PowerShell Module and the Uninstall-M365Module Function with the Parameter -FileMode. It will delete the Module Folder of that Module.
Uninstall-M365Module -Modules MicrosoftTeams -Scope CurrentUser -FileMode
Install-PSResource -Name MicrosoftTeams -Scope CurrentUser
Get-InstalledPSResource -Name MicrosoftTeams -Scope CurrentUser
Some basic testing
Connect-MicrosoftTeams
Get-Team
Get-CsOnlineUser -Identity a.bohren@icewolf.ch | fl *Ent*,*host*,*voice*, *line*
M365PSProfile
Or you can simply use my M365PSProfile Module - find the Documentation here: https://github.com/fabrisodotps1/M365PSProfile/
Uninstall-M365Module -Modules MicrosoftTeams -Scope CurrentUser -FileMode
Install-M365Module
Regards
Andres Bohren