Use Chocolatey in low bandwidth environments
By default, Chocolatey downloads packages and any resources the packages use as fast as it can. In most cases, this is exactly the behavior you want. However, low bandwidth areas would be overwhelmed with this behavior and so you need to slow Chocolatey down. Package Throttle covers these low bandwidth scenarios automatically.
Adding the option or config setting for maximum download rate will slow down the speed a package and any resources are downloaded to a particular machine. This is done in "bit per second" (b/s or bps), which is a common unit of data transmission rate (bandwidth) in computers. The symbol bps is often pronounced "bips."
A good way to find what you need is to translate from Kbps to bits: Google Kbps to bps or KB/s (bytes) to bits: Google KB/s to bps.
- Chocolatey (
chocolatey
package) v0.10.7+. - Chocolatey Licensed Edition.
- Chocolatey Licensed Extension (
chocolatey.extension
package) v1.10.0+.
📝 NOTE: To see all feature videos for Chocolatey for Business, please visit https://chocolatey.org/resources/features#c4b.
Global Config Setting:
maximumDownloadRateBitsPerSecond
- The maximum download rate in bits per second. '0' or empty means no maximum. A number means that will be the maximum download rate in bps. Defaults to ''.
choco install
/ choco upgrade
provide the following option(s):
--bps, --maxdownloadrate, --max-download-rate, --maxdownloadbitspersecond, --max-download-bits-per-second, --maximumdownloadbitspersecond, --maximum-download-bits-per-second=VALUE
Maximum Download Rate Bits Per Second - The maximum download rate in
bits per second. '0' or empty means no maximum. A number means that will
be the maximum download rate in bps. Defaults to config setting of '0'.
Available in [licensed editions](https://chocolatey.org/compare) v1.10+ only. See https://chocolate-
y.org/docs/features-package-throttle
You must have a licensed edition of Chocolatey (Pro, MSP, or Business) and use the community package repository to install/upgrade packages. Pro is a personal, named license that costs about the price of a lunch outing per month and comes with several other features. Business editions are great for organizations that need to manage the total software management lifecycle. MSP editions are for managed service providers and contain the same features as Pro (minus VirusTotal integration).
It works to slow the download rate when you provide the maximum download rate as an argument or as a set feature.
It sees a resource being downloaded and throttles the download to lower download speeds, ensuring it doesn't go over a set number of bits per second during the entire course of the download.
Package Throttle only works for resources downloaded with built-in Chocolatey PowerShell functions. It will not be able to slow down downloads using WebClient, and it's an anti-pattern in packaging to use WebClient anyways.
- Globally -
choco config set maximumDownloadRateBitsPerSecond <value>
- Per command - use the option
--max-download-bits-per-second="'<value>'"
with install/upgrade commands.
- Globally -
choco config unset maximumDownloadRateBitsPerSecond
- Per command - don't specify the
--max-download-bits-per-second
option (and don't have the config set) or--max-download-bits-per-second="'0'"
if you want to temporarily disable it but keep the config setting.