PackageManagement

1.2.0-preview

PackageManagement (a.k.a. OneGet) is a new way to discover and install software packages from around the web.
It is a manager or multiplexor of existing package managers (also called package providers) that unifies Windows package management with a single Windows PowerShell interface. With PackageManagement, you can do the following.
 - Manage a list of software r
PackageManagement (a.k.a. OneGet) is a new way to discover and install software packages from around the web.
It is a manager or multiplexor of existing package managers (also called package providers) that unifies Windows package management with a single Windows PowerShell interface. With PackageManagement, you can do the following.
 - Manage a list of software repositories in which packages can be searched, acquired and installed
 - Discover software packages
 - Seamlessly install, uninstall, and inventory packages from one or more software repositories
Show more

Minimum PowerShell version

3.0

This is a prerelease version of PackageManagement.

Installation Options

Copy and Paste the following command to install this package using PowerShellGet More Info

Install-Module -Name PackageManagement -RequiredVersion 1.2.0-preview -AllowPrerelease

Copy and Paste the following command to install this package using Microsoft.PowerShell.PSResourceGet More Info

Install-PSResource -Name PackageManagement -Version 1.2.0-preview -Prerelease

You can deploy this package directly to Azure Automation. Note that deploying packages with dependencies will deploy all the dependencies to Azure Automation. Learn More

Manually download the .nupkg file to your system's default download location. Note that the file won't be unpacked, and won't include any dependencies. Learn More

Owners

Copyright

(C) Microsoft Corporation. All rights reserved.

Package Details

Author(s)

  • Microsoft Corporation

Tags

PackageManagement Linux Mac

Cmdlets

Find-Package Get-Package Get-PackageProvider Get-PackageSource Install-Package Import-PackageProvider Find-PackageProvider Install-PackageProvider Register-PackageSource Set-PackageSource Unregister-PackageSource Uninstall-Package Save-Package

DSCResources

PackageManagement PackageManagementSource

PSEditions

Core Desktop

Dependencies

This module has no dependencies.

Release Notes

## 1.2.0-preview
A preview version of PackageManagement with NuGet v3 support. Currently we've only verified MyGet and NuGet.org implementations. Please log bugs with other server implementations if there are issues. Also please note any performance issues.
### New features
- Register and use a NuGet v3 URL
```powershell
Register-PackageSource -Name NuGet3 -Location https://api.nuget.org/v3/index.json -ProviderName NuGet
Find-Package awssdk -Source NuGet3
```
- Prototype argument completer without proxy support. Either only a NuGet v3 source must be registered for NuGet provider OR a NuGet v3 source must be specified before the -Name parameter. The script is currently only available on GitHub [here](https://github.com/OneGet/NuGetProvider/blob/3e9e185f1087cabf1e451cca41ea57abe07a92d3/Register-FindPackageNuGetArgumentCompleter.ps1)
```powershell
.\Register-FindPackageNuGetArgumentCompleter.ps1
Find-Package -Source NuGet3 -Name <tab>
```
### Breaking changes
- Searching for a package term with the -AllVersions switch is no longer allowed. This is due to concerns about stressing search services.
```powershell
Find-Package aws* -AllVersions # Not allowed
Find-Package awssdk -AllVersions # Allowed
```

FileList

Version History

Version Downloads Last updated
1.4.8.1 309,800,620 7/1/2022
1.4.7 69,257,342 4/24/2020
1.4.6 5,804,849 12/23/2019
1.4.5 2,064,858 10/7/2019
1.4.4.1 4,013 4/22/2022
1.4.4 1,689,529 8/16/2019
1.4.3 994,967 7/9/2019
1.4.2 625,797 6/17/2019
1.4.1 372,176 6/4/2019
1.4 300,917 5/21/2019
1.3.2 350,724 5/7/2019
1.3.1 3,311,252 1/30/2019
1.2.4 859,749 12/1/2018
1.2.2 710,258 10/12/2018
1.2.0-preview (current version) 77,354 12/20/2017
1.1.7.2 3,076,496 5/4/2018
1.1.7.0 816,203 10/31/2017
1.1.6.0 30,602 9/11/2017
1.1.4.0 42,202 5/24/2017
1.1.3.0 18,741 3/4/2017
1.1.1.0 59,528 11/11/2016
1.1.0.0 12,098 9/29/2016
Show less