WARNING: Unable to download from URI LinkID 627338 clcid 0x409 to
This post describes how to resolve:
WARNING: Unable to download from URI 'https://go.microsoft.com/fwlink/?LinkID=627338&clcid=0x409' to ''.
Cause
This warning can occur when trying to install a PowerShell module or register a PowerShell repository and Tls12 is not specified as the SecurityProtocol.
You can check the SecurityProtocol by running this command in PowerShell:
[Net.ServicePointManager]::SecurityProtocol
Resolution
To resolve this issue, set the SecurityProtocol to Tls12 by running this command in PowerShell:
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
You should then be able to register module repositories and install PowerShell modules successfully.
Related Posts
- Get-PSGalleryApiAvailability : PowerShell Gallery is currently unavailable. Please try again later.
Comments
Post a Comment