Tinus EngOps Wiki

Logo

OpsaC - Operating as PowerShell code

Links

Home

PowerShell Blog

PowerShell Index

PowerShell Search

Additional Websites

View my GitHub Profile

View my GitHub Gists

View Tinus IT Wiki

View my Photo Website

Unable to resolve package source

published: November 29, 2020 author: Tinu tags: PowerShell categories: PowerShell-Errors


Table of Contents

Unable to resolve package source

Unable to resolve package source https://www.powershellgallery.com/api/v2

Find-Module will result in a meaningless warning if you search for a known module in the Powershell gallery.

Problem

Find-Module -Name PSWriteHTML
WARNING: Unable to resolve package source 'https://www.powershellgallery.com/api/v2'.

and the following Error is from a TLS issue:

PackageManagement\Find-Package : No match was found for the specified search criteria and module name 'PSWriteHTML'. 
Try Get-PSRepository to see all available registered module repositories.
At C:\Program Files\WindowsPowerShell\Modules\PowerShellGet\2.2\PSModule.psm1:8871 char:9
+ PackageManagement\Find-Package @PSBoundParameters | Microsoft ...
+ CategoryInfo          : ObjectNotFound: (Microsoft.Power...ets.FindPackage:FindPackage) [Find-Package], Exception
+ FullyQualifiedErrorId : NoMatchFoundForCriteria,Microsoft.PowerShell.PackageManagement.Cmdlets.FindPackage

Cause

Thats a good question, I didn’t find something about this.

Solution

Use NuGet provider to install the required module to the target location.

Register-PackageSource -Name PSNuGet -Location https://www.powershellgallery.com/api/v2 -ProviderName NuGet

← Previous Post [ Top ] Copyright © 2024 by tinuwalther [ Blog ] Next Post →