WARNING: MSG:UnableToDownload LinkID 627338 clcid 0x409
This post describes how to resolve:
WARNING: MSG:UnableToDownload «https://go.microsoft.com/fwlink/?LinkID=627338&clcid=0x409» «»
Cause
This warning can occur when trying to get a PowerShell repository and Tls12 is not specified as the 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 get repositories and install PowerShell modules successfully.
Comments
Post a Comment