ExchangeOnlineManagement 3.9.0 released

ExchangeOnlineManagement 3.9.0 released

Hi All,

A few hours ago, Microsoft has released the ExchangeOnlineManagement 3.9.0 PowerShell Module. I don’t know what magic they used, but it was not there yesterday.

v3.9.0:

  • Introduce -EnableSearchOnlySession switch in Connect-IPPSSession cmdlet, which enables certain eDiscovery and related cmdlets that connect to other M365 services

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 -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

Connect-ExchangeOnline -ShowBanner:$false
Get-Mailbox -Identity a.bohren@icewolf.ch

Disconnect from Exchange Online

Disconnect-ExchangeOnline -Confirm:$false

Let’s connect with the new Parameter -EnableSearchOnlySession and see what commands are available

Connect-IPPSSession -ShowBanner:$false -EnableSearchOnlySession
Get-Module
Get-Command -Module tmpEXO_blhd54wu.4fs

M365PSProfile

Or you can simply use my M365PSProfile Module - find the Documentation here: https://github.com/fabrisodotps1/M365PSProfile/

Uninstall-M365Module -Modules ExchangeOnlineManagement -Scope CurrentUser -FileMode
Install-M365Module

Regards
Andres Bohren

Exchange Logo

PowerShell Logo