ExchangeOnlineManagement 3.7.0 released
Hi All,
Yesterday, Microsoft has released the ExchangeOnlineManagement 3.7.0 PowerShell Module.
- PowerShell Gallery ExchangeOnlineManagement 3.7.0
v3.7.0 :
- Integrated WAM (Web Account Manager) in Authentication flows to enhance security.
- Starting with EXO V3.7, use the LoadCmdletHelp parameter alongside Connect-ExchangeOnline to access the Get-Help cmdlet, as it will not loaded by default.
- Fixed connection issues with app only authentication in Security & Compliance PowerShell.
I am using the new PSResourceGet here instead of the PowerShellGet commands.
Show installed Versions and what’s available in PowerShell Gallery
Get-InstalledPSResource ExchangeOnlineManagement -Scope CurrentUser
Find-PSResource ExchangeOnlineManagement
Uninstall old Module and install the new Module
Uninstall-PSResource ExchangeOnlineManagement -Scope CurrentUser -SkipDependencyCheck
Install-PSResource ExchangeOnlineManagement -Scope CurrentUser
Get-InstalledPSResource ExchangeOnlineManagement -Scope CurrentUser
Connect to Exchange Online and get a Mailbox
Connect-ExchangeOnline -ShowBanner:$false
Get-Mailbox -Identity a.bohren@icewolf.ch
Get-Help Get-Mailbox
Using the parameter -LoadCmdletHelp the Help is more detailed
Connect-ExchangeOnline -ShowBanner:$false -LoadCmdletHelp
Get-Mailbox -Identity a.bohren@icewolf.ch
Get-Help Get-Mailbox
Or you can simply use my M365PSProfile Module - find the Documentation here: https://github.com/fabrisodotps1/M365PSProfile/
Install-PSResource -Name M365PSProfile
Add-M365PSProfile
Install-M365Module
Regards
Andres Bohren