ChocolateyGet is Package Management (OneGet) provider that facilitates installing Chocolatey packages from any NuGet repository.
Install-PackageProvider ChocolateyGet -Force
Find-Package -Provider ChocolateyGet -Name nodejs
Find-Package -Provider ChocolateyGet -Name firefox*
Find-Package nodejs -Verbose -Provider ChocolateyGet -AdditionalArguments --Exact | Install-Package
Install-Package -Name 7zip -Verbose -Provider ChocolateyGet
Get-Package nodejs -Verbose -Provider ChocolateyGet
Get-Package nodejs -Provider ChocolateyGet -Verbose | Uninstall-Package -Verbose
Register-PackageSource privateRepo -Provider ChocolateyGet -Location 'https://somewhere/out/there/api/v2/'
Find-Package nodejs -Verbose -Provider ChocolateyGet -Source privateRepo -AdditionalArguments --exact | Install-Package
Unregister-PackageSource privateRepo -Provider ChocolateyGet
ChocolateyGet integrates with Choco.exe to manage and store source information
If you need to pass in some of choco arguments to the Find, Install, Get and Uninstall-Package cmdlets, you can use AdditionalArguments PowerShell property.
Install-Package sysinternals -Provider ChocolateyGet -AcceptLicense -AdditionalArguments '--paramsglobal --params "/InstallDir:c:\windows\temp\sysinternals /QuickLaunchShortcut:false" -y --installargs MaintenanceService=false' -Verbose
Fully compatible with the PackageManagement DSC resources
Configuration MyNode {
Import-DscResource -Name PackageManagement,PackageManagementSource
PackageManagement ChocolateyGet {
Name = 'ChocolateyGet'
Source = 'PSGallery'
}
PackageManagementSource ChocoPrivateRepo {
Name = 'privateRepo'
ProviderName = 'ChocolateyGet'
SourceLocation = 'https://somewhere/out/there/api/v2/'
InstallationPolicy = 'Trusted'
DependsOn = '[PackageManagement]ChocolateyGet'
}
PackageManagement NodeJS {
Name = 'nodejs'
ProviderName = 'ChocolateyGet'
Source = 'privateRepo'
DependsOn = '[PackageManagementSource]ChocoPrivateRepo'
}
}
A common complaint of PackageManagement/OneGet is it doesn't allow for updating installed packages, while Chocolatey does. In order to reconcile the two, ChocolateyGet has a reserved keyword 'latest' that when passed as a Required Version can compare the version of what's currently installed against what's in the repository.
PS C:\Users\ethan> Find-Package curl -RequiredVersion latest -Provider ChocolateyGet
Name Version Source Summary
---- ------- ------ -------
curl 7.68.0 chocolatey
PS C:\Users\ethan> Install-Package curl -RequiredVersion 7.60.0 -Provider ChocolateyGet -Force
Name Version Source Summary
---- ------- ------ -------
curl v7.60.0 chocolatey
PS C:\Users\ethan> Get-Package curl -RequiredVersion latest -Provider ChocolateyGet
Get-Package : No package found for 'curl'.
At line:1 char:1
+ Get-Package curl -RequiredVersion latest -Provider ChocolateyGet
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Microsoft.Power...lets.GetPackage:GetPackage) [Get-Package], Exception
+ FullyQualifiedErrorId : NoMatchFound,Microsoft.PowerShell.PackageManagement.Cmdlets.GetPackage
PS C:\Users\ethan> Install-Package curl -RequiredVersion latest -Provider ChocolateyGet -Force
Name Version Source Summary
---- ------- ------ -------
curl v7.68.0 chocolatey
PS C:\Users\ethan> Get-Package curl -RequiredVersion latest -Provider ChocolateyGet
Name Version Source ProviderName
---- ------- ------ ------------
curl 7.68.0 Chocolatey ChocolateyGet
This feature can be combined with a PackageManagement-compatible configuration management system (ex: PowerShell DSC LCM in 'ApplyAndAutoCorrect' mode) to regularly keep certain packages up to date:
Configuration MyNode {
Import-DscResource -Name PackageManagement
PackageManagement ChocolateyGet {
Name = 'ChocolateyGet'
Source = 'PSGallery'
}
PackageManagement SysInternals {
Name = 'sysinternals'
RequiredVersion = 'latest'
ProviderName = 'ChocolateyGet'
DependsOn = '[PackageManagement]ChocolateyGet'
}
}
Please note - Since Chocolatey doesn't track source information of installed packages, and since PackageManagement doesn't support passing source information when invoking Get-Package
, the 'latest' functionality will not work if Chocolatey.org is removed as a source and multiple custom sources are defined.
Furthermore, if both Chocolatey.org and a custom source are configured, the custom source will be ignored when the 'latest' required version is used with Get-Package
.
Example PowerShell DSC configuration using the 'latest' required version with a custom source:
Configuration MyNode {
Import-DscResource -Name PackageManagement,PackageManagementSource
PackageManagement ChocolateyGet {
Name = 'ChocolateyGet'
Source = 'PSGallery'
}
PackageManagementSource ChocoPrivateRepo {
Name = 'privateRepo'
ProviderName = 'ChocolateyGet'
SourceLocation = 'https://somewhere/out/there/api/v2/'
InstallationPolicy = 'Trusted'
DependsOn = '[PackageManagement]ChocolateyGet'
}
PackageManagementSource ChocolateyRepo {
Name = 'Chocolatey'
ProviderName = 'ChocolateyGet'
Ensure = 'Absent'
DependsOn = '[PackageManagement]ChocolateyGet'
}
# The source information wont actually be used by the Get-Package step of the PackageManagement DSC resource check, but it helps make clear to the reader where the package should come from
PackageManagement NodeJS {
Name = 'nodejs'
ProviderName = 'ChocolateyGet'
Source = 'privateRepo'
RequiredVersion = 'latest'
DependsOn = @('[PackageManagementSource]ChocoPrivateRepo', '[PackageManagementSource]ChocolateyRepo')
}
}
If using the 'latest' functionality, best practice is to either:
- use the default Chocolatey.org source
- unregister the default Chocolatey.org source in favor of a single custom source
ChocolateyGet works with PowerShell for both FullCLR/'Desktop' (ex 5.1) and CoreCLR (ex: 7.0.1), though Chocolatey itself still requires FullCLR.
When used with CoreCLR, PowerShell 7.0.1 is a minimum requirement due to a compatibility issue in PowerShell 7.0.
Save-Package is not supported with the ChocolateyGet provider, due to Chocolatey not supporting package downloads without special licensing.
Due to a bug with Chocolatey versions 0.10.14 through 0.10.15, ChocolateyGet is unable to search packages by package range via command line as of version 2.1.0.
Until Chocolatey 0.10.16 is released, the following workarounds are available:
- Specify
RequiredVersion
if possibleInstall-Package ninja -RequiredVersion 1.9.0 -Provider ChocolateyGet
- Downgrade Chocolatey to 0.10.13 until 0.10.16 is released (ChocolateyGet installs 0.10.13 by default)
Install-Package chocolatey -RequiredVersion 0.10.13 -Provider ChocolateyGet -Force Install-Package ninja -MaximumVersion 1.9.0 -Provider ChocolateyGet
ChocolateyGet is licensed under the MIT license.