Questions tagged [powershellget]

PowerShellGet is the Package Manager Manager for PowerShell modules.

PowerShellGet is the package manager for PowerShell items. There is a PSModule package provider that exposes PowerShellGet functionality through PackageManagement (aka OneGet). Because of this, you can either run Install-Module or Install-Package -Provider PSModule to install a module from the PowerShell Gallery. Certain PowerShellGet functionality, including Update-Module and Publish-Module, cannot be accessed through PackageManagement commands.

In summary, PowerShellGet is solely focused on having a premium package management experience for PowerShell content. PackageManagement is focused on exposing all package management experiences through one general set of tools.

PowerShellGet can install modules from PowerShell Gallery, NuGet feed and any other source supported by OneGet.

32 questions
0
votes
1 answer

PowerShell Install-Module Error - No Match was found for specified search criteria and module name 'PackageManagement'

I am trying to run the following command in my Windows 10 PC , and PowerShell version 7.1.2 > Install-Module PowerShellGet, PackageMAnagement -Force -WarningAction SilentlyContinue But I am getting the below error as shown in the screenshot : -- No…
user3254725
  • 65
  • 1
  • 9
0
votes
1 answer

Using a local Artifactory PowerShell gallery with PowershellGet and Azure AD SAML authentication

We currently have JFrog's Artifcatory as our repository tool of choice, with single-sign on using SAML and Azure Active Directory. I have now also created a local AF repository for our PowerShell modules. This all works when I use an internal AF…
1 2
3