Unable To Download From Uri 'https //go.microsoft.com/fwlink/ ((link)) May 2026

If you are encountering the error , you are likely trying to install a PowerShell module or run a Microsoft-related installer behind a security layer that doesn't recognize your connection.

This error is most common when installing the NuGet provider or modules like AzureAD, Microsoft.Graph, or ExchangeOnlineManagement. Core Cause: Outdated TLS Protocols

The primary reason for this failure is that older versions of Windows and PowerShell (specifically 5.1 and earlier) default to . However, Microsoft’s download servers and the PowerShell Gallery now require TLS 1.2 or higher for all connections to ensure security. Step 1: Force PowerShell to Use TLS 1.2 (Immediate Fix) If you are encountering the error , you

The fastest way to resolve this is to manually set the security protocol for your current PowerShell session. Open as an Administrator . Run the following command: powershell

[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 Use code with caution. Run the following command: powershell [Net

Trying to install program using Powershell and getting this error

This fix only lasts for the current session . If you close PowerShell, you may need to run it again. Step 2: Make the Fix Permanent (Registry Edit) Install-Module -Name PowerShellGet ).

Retry your download or installation (e.g., Install-Module -Name PowerShellGet ).