Dec 20 2020 05:17 PM
Greetings,
I'm trying to use Exchange PowerShell. I've loaded powershell ver 7.1 with no problems on a Windows 10 machine.
When I use the command Import-Module, I get the error shown in the screen grab. Any help for this newbie would be gratefully appreciated.
Thank you in advance
Dec 23 2020 10:32 AM
Hi
what is the output of the following
$env:PSModulePath.Split(";") | foreach {Get-ChildItem -Path $_ -Directory | where {$_.name -like "ExchangeOnline*"}}
it should not be empty, if so, you need to install ExchangeManagementModule
Dec 23 2020 10:46 AM
Thanks. I got it working. I didn't see an error in the management module loading.
All good now.
Thank you.