Forum Discussion
DFOTA
Oct 16, 2024Copper Contributor
Get-EXO cmdlets all cause errors.
When connecting to Exchange Online and running an EXO command I am seeing some strange errors which cause the connection to Exchange online to fail. connect-exchangeonline ----------------------...
Shannonchinna
Oct 23, 2024Copper Contributor
Are you using a proxy?
- DFOTAOct 23, 2024Copper Contributor
Shannonchinna No but I do think it has something to do with the modules I have installed or at least the version. Leaning a lot towards the powershell get module.
- LainRobertsonOct 23, 2024Silver Contributor
The error relates directly to TLS, with the specific statement that:
The specified value is not valid in the 'SslProtocolType' enumeration.
TLS 1.2 is the minimum requirement for the current ExchangeOnlineManagement module.
What do you get if you run the following?
[System.Enum]::GetNames([System.Security.Authentication.SslProtocols]);If you're running a sufficiently-patched Windows 10 or Server 2019 build or later, you should see at least:
Cheers,
Lain
- DFOTAOct 24, 2024Copper Contributor