Powershell install – No match was found for the specified search criteria and module name

I ran into the same error installing different module. My fix was specifying TLS1.2 for the .net Security protocol.

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

Leave a Comment