Connect-Exchange Online (Error while sending the request)

AW13-2828 10 Reputation points
2023-11-20T10:17:36.3+00:00

Hello,

I'm getting the below Error while connecting to Exchange Online (PowerShell Script) when called from .Net Application.

        #Import-Module ExchangeOnlineManagement
        #Connect-ExchangeOnline -Credential $Creds
An error occurred while sending the request.
At C:\Program 
Files\WindowsPowerShell\Modules\ExchangeOnlineManagement\3.4.0\netFramework\ExchangeOnlineManagement.psm1:762 char:21
+                     throw $_.Exception.InnerException;
+                     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OperationStopped: (:) [], HttpRequestException
    + FullyQualifiedErrorId : An error occurred while sending the request.

I've checked the Credentials. Updated the Exchange Online Module. Checked .Net Framework and its Compatible.

I'm using Windows PowerShell 5.1.

Policy is been set to Bypass.

Thanks & Regards

Microsoft Exchange Online
Exchange Server Development
Exchange Server Development
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Development: The process of researching, productizing, and refining new or existing technologies.
510 questions
Microsoft Exchange Hybrid Management
Microsoft Exchange Hybrid Management
Microsoft Exchange: Microsoft messaging and collaboration software.Hybrid Management: Organizing, handling, directing or controlling hybrid deployments.
1,893 questions
Windows Server PowerShell
Windows Server PowerShell
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.PowerShell: A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
5,378 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Mora, Juan-Manuel 0 Reputation points
    2024-02-26T16:10:13.8866667+00:00

    Any steps to solve this issue?

    0 comments No comments

  2. Russ S 0 Reputation points
    2024-03-05T22:39:38.7833333+00:00

    I had the same issue, but was able to solve it by specifying Tls 1.2.

    Add this line:

    [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12

    That should get you past that error.