ExchangeOnlineManagement 3.7.2 released

Hi All,
Yesterday Microsoft has released the ExchangeOnlineManagement 3.7.2 PowerShell Module.
- PowerShell Gallery ExchangeOnlineManagement 3.7.2


v3.7.2:
- Added a new parameter -DisableWAM to the Connect-ExchangeOnline cmdlet, which disables the Web Account Manager (WAM).


I am using the new PSResourceGet here instead of the PowerShellGet commands.
Show installed Versions and what’s available in PowerShell Gallery. You need to use the -Prerelease Parameter to show Preview Versions of a Module
Get-InstalledPSResource ExchangeOnlineManagement -Scope CurrentUser
Find-PSResource ExchangeOnlineManagement -Prerelease


Uninstall old Module
Uninstall-PSResource ExchangeOnlineManagement -Scope CurrentUser -SkipDependencyCheck


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 ExchangeOnlineManagement -Scope CurrentUser -FileMode


Installing the Module and show the installed Module
Install-PSResource -Name ExchangeOnlineManagement -Scope CurrentUser
Get-InstalledPSResource -Name ExchangeOnlineManagement -Scope CurrentUser


Connect to Exchange Online and get a Mailbox - I did get an Error here and was not able to Connect
Import-Module ExchangeOnlineManagement
Connect-ExchangeOnline -ShowBanner:$false


I am using PowerShell 5.1 here
$PSVersionTable


Try this with PowerShell 7
Or you can simply use my M365PSProfile Module - find the Documentation here: https://github.com/fabrisodotps1/M365PSProfile/
Install-PSResource -Name M365PSProfile
Add-M365PSProfile
Uninstall-M365Module MicrosoftTeams -Scope CurrentUser -FileMode
Install-M365Module


I was able to connect and run some commands
Connect-ExchangeOnline -ShowBanner:$false
Get-Mailbox -Identity a.bohren@icewolf.ch
Disconnect-ExchangeOnline -Confirm:$false


From outside you can’t see any diffrence when using the -DisableWAM Parameter
Connect-ExchangeOnline -ShowBanner:$false


Connect-ExchangeOnline -ShowBanner:$false -DisableWAM


Regards
Andres Bohren

Exchange Logo


PowerShell Logo
