Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
-
STEP1
Package Review
-
STEP2
Integration Method
-
STEP3
Internal Repo Url
-
STEP4
Environment Setup
-
STEP5
Install Script
Step 1: Review Your Packages
Step 2: Choose Your Integration Method
Step 3: Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
Step 3: Copy Your Script or Download Config
Option 1: Copy Script
Option 2: Download Config
Step 4: Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
-
You can also just download the packages and push them to a repository
Download Packages
-
Open Source
-
Download the packages:
Download Packages - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
-
For package and dependencies run:
- Automate package internalization
-
Run: (additional options)
Step 5: Copy Your Script
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### We initialize a few things that are needed by this script - there are no other requirements.
$ErrorActionPreference = "Stop"
#### Set TLS 1.2 (3072) as that is the minimum required by various up-to-date repositories.
#### Use integers because the enumeration value for TLS 1.2 won't exist
#### in .NET 4.0, even though they are addressable if .NET 4.5+ is
#### installed (.NET 4.5 is an in-place upgrade).
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
#### We use this variable for future REST calls.
$RequestArguments = @{
UseBasicParsing = $true
}
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$NugetRepositoryUrl = "INTERNAL REPO URL"
### b. Internal Repository Credential ###
#### If required, add the repository access credential here
# $NugetRepositoryCredential = [PSCredential]::new(
# "username",
# ("password" | ConvertTo-SecureString -AsPlainText -Force)
# )
# $RequestArguments.Credential = $NugetRepositoryCredential
### c. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it
$ChocolateyDownloadUrl = "$($NugetRepositoryUrl.TrimEnd('/'))/package/chocolatey.1.1.0.nupkg"
### d. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService"
#### ii. If using a Client Salt, add it here
# $ChocolateyCentralManagementClientSalt = "clientsalt"
#### iii. If using a Service Salt, add it here
# $ChocolateyCentralManagementServiceSalt = "servicesalt"
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
#### Download the Nupkg, appending .zip to the filename to handle archive cmdlet limitations
if (-not (Get-Command choco.exe -ErrorAction SilentlyContinue)) {
$TempDirectory = Join-Path $env:Temp "chocolateyInstall"
if (-not (Test-Path $TempDirectory -PathType Container)) {
$null = New-Item -Path $TempDirectory -ItemType Directory
}
$DownloadedNupkg = Join-Path $TempDirectory "$(Split-Path $ChocolateyDownloadUrl -Leaf).zip"
Invoke-WebRequest -Uri $ChocolateyDownloadUrl -OutFile $DownloadedNupkg @RequestArguments
#### Extract the Nupkg, and run the chocolateyInstall script
if (Get-Command Microsoft.PowerShell.Archive\Expand-Archive -ErrorAction SilentlyContinue) {
Microsoft.PowerShell.Archive\Expand-Archive -Path $DownloadedNupkg -DestinationPath $TempDirectory -Force
} else {
# PowerShell versions <4.0 do not have this function available
try {
$shellApplication = New-Object -ComObject Shell.Application
$zipPackage = $shellApplication.NameSpace($DownloadedNupkg)
$destinationFolder = $shellApplication.NameSpace($TempDirectory)
$destinationFolder.CopyHere($zipPackage.Items(), 0x10)
} catch {
Write-Warning "Unable to unzip package using built-in compression."
throw $_
}
}
& $(Join-Path $TempDirectory "tools\chocolateyInstall.ps1")
}
if (-not (Get-Command choco.exe -ErrorAction SilentlyContinue)) {
refreshenv
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# choco feature enable -n useFipsCompliantChecksums
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
choco config set --name cacheLocation --value C:\ProgramData\chocolatey\cache
#### Increase timeout to at least 4 hours
choco config set --name commandExecutionTimeoutSeconds --value 14400
#### Turn off download progress when running choco through integrations
choco feature disable --name showDownloadProgress
### c. Sources ###
#### Remove the default community package repository source
choco source list --limitoutput | ConvertFrom-Csv -Header 'Name', 'Location' -Delimiter '|' | ForEach-Object {
if ($_.Location -eq 'https://community.chocolatey.org/api/v2/') {
choco source remove -n $_.Name
}
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
if ($NugetRepositoryCredential) {
choco source add --name ChocolateyInternal --source $NugetRepositoryUrl --user $NugetRepositoryCredential.UserName --password $NugetRepositoryCredential.GetNetworkCredential().Password --priority 1
} else {
choco source add --name ChocolateyInternal --source $NugetRepositoryUrl --priority 1
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
choco upgrade chocolatey --confirm
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
choco install chocolatey-license --source $NugetRepositoryUrl --confirm
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
if ("chocolatey-license" -in (choco list --localonly --limitoutput | ConvertFrom-Csv -Header "Name" -Delimiter "|").Name) {
choco source disable --name chocolatey.licensed
} else {
Write-Warning "Not disabling 'chocolatey.licensed' feed, as Chocolatey-License has not been installed."
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
if ("chocolatey-license" -in (choco list --localonly --limitoutput | ConvertFrom-Csv -Header "Name" -Delimiter "|").Name) {
choco install chocolatey.extension --source $NugetRepositoryUrl --confirm
} else {
Write-Warning "Not installing 'chocolatey.extension', as Chocolatey-License has not been installed."
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
choco feature disable --name showNonElevatedWarnings
choco feature enable --name useBackgroundService
choco feature enable --name useBackgroundServiceWithNonAdministratorsOnly
choco feature enable --name allowBackgroundServiceUninstallsFromUserInstallsOnly
choco config set --name allowedBackgroundServiceCommands --value "install,upgrade,uninstall"
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if ($ChocolateyCentralManagementUrl) {
choco install chocolatey-agent --source $NugetRepositoryUrl --confirm
choco config set --name CentralManagementServiceUrl --value $ChocolateyCentralManagementUrl
if ($ChocolateyCentralManagementClientSalt) {
choco config set --name centralManagementClientCommunicationSaltAdditivePassword --value $ChocolateyCentralManagementClientSalt
}
if ($ChocolateyCentralManagementServiceSalt) {
choco config set --name centralManagementServiceCommunicationSaltAdditivePassword --value $ChocolateyCentralManagementServiceSalt
}
choco feature enable --name useChocolateyCentralManagement
choco feature enable --name useChocolateyCentralManagementDeployments
}
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. chocolatey.chocolatey
##### You will require the chocolatey.chocolatey collection to be installed
##### on all machines using this playbook.
##### Please see https://github.com/chocolatey/chocolatey-ansible/#installing-the-collection-from-ansible-galaxy
- name: Install and Configure Chocolatey
hosts: all
## 2. TOP LEVEL VARIABLES ##
vars:
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
nuget_repository_url: INTERNAL REPO URL
### b. Internal Repository Credential ###
#### If required, add the repository access credential here and
#### uncomment lines with source_username and source_password below
# nuget_repository_username: username
# nuget_repository_password: password
### c. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# chocolatey_central_management_url: https://chocolatey-central-management:24020/ChocolateyManagementService
#### ii. If using a Client Salt, add it here
# chocolatey_central_management_client_salt: clientsalt
#### iii. If using a Service Salt, add it here
# chocolatey_central_management_service_salt: servicesalt
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
tasks:
- name: Install chocolatey
win_chocolatey:
name: chocolatey
source: {{ nuget_repository_url }}
# source_username: {{ nuget_repository_username }}
# source_password: {{ nuget_repository_password }}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# - name: Enable FIPS compliance
# win_chocolatey_feature:
# name: useFipsCompliantChecksums
# state: enabled
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
- name: Set the cache location
win_chocolatey_config:
name: cacheLocation
state: present
value: C:\ProgramData\chocolatey\cache
#### Increase timeout to at least 4 hours
- name: Set the command execution timeout
win_chocolatey_config:
name: commandExecutionTimeoutSeconds
state: present
value: 14400
#### Turn off download progress when running choco through integrations
- name: Disable showing download progress
win_chocolatey_feature:
name: showDownloadProgress
state: disabled
### c. Sources ###
#### Remove the default community package repository source
- name: Remove Chocolatey Community Repository
win_chocolatey_source:
name: chocolatey
state: absent
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
- name: Add Internal Repository
win_chocolatey_source:
name: ChocolateyInternal
state: present
source: {{ nuget_repository_url }}
# source_username: {{ nuget_repository_username }}
# source_password: {{ nuget_repository_password }}
priority: 1
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
- name: Upgrade Chocolatey
win_chocolatey:
name: chocolatey
state: latest
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
- name: Install Chocolatey License
win_chocolatey:
name: chocolatey-license
source: ChocolateyInternal
state: latest
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
- name: Disable Chocolatey Community Repository
win_chocolatey_source:
name: chocolatey.licensed
state: disabled
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
- name: Install Chocolatey Extension
win_chocolatey:
name: chocolatey.extension
source: ChocolateyInternal
state: latest
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
- name: Hide not-elevated warnings
win_chocolatey_feature:
name: showNonElevatedWarnings
state: disabled
- name: Use background mode for self-service
win_chocolatey_feature:
name: useBackgroundService
state: enabled
- name: Use background service for non-admins
win_chocolatey_feature:
name: useBackgroundServiceWithNonAdministratorsOnly
state: enabled
- name: Allow background uninstallation for user installs
win_chocolatey_feature:
name: allowBackgroundServiceUninstallsFromUserInstallsOnly
state: enabled
- name: Set allowed background service commands
win_chocolatey_config:
name: backgroundServiceAllowedCommands
state: present
value: install,upgrade,uninstall
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
- name: Install Chocolatey Agent
when: chocolatey_central_management_url is defined
win_chocolatey:
name: chocolatey-agent
source: ChocolateyInternal
state: latest
- name: Set the Central Management Service URL
when: chocolatey_central_management_url is defined
win_chocolatey_config:
name: CentralManagementServiceUrl
state: present
value: {{ chocolatey_central_management_url }}
- name: Set the Central Management Client Salt
when: chocolatey_central_management_client_salt is defined
win_chocolatey_config:
name: centralManagementClientCommunicationSaltAdditivePassword
state: present
value: {{ chocolatey_central_management_client_salt }}
- name: Set the Central Management Service Salt
when: chocolatey_central_management_service_salt is defined
win_chocolatey_config:
name: centralManagementServiceCommunicationSaltAdditivePassword
state: present
value: {{ chocolatey_central_management_service_salt }}
- name: Use Central Management
when: chocolatey_central_management_url is defined
win_chocolatey_feature:
name: useChocolateyCentralManagement
state: enabled
- name: Use Central Management Deployments
when: chocolatey_central_management_url is defined
win_chocolatey_feature:
name: useChocolateyCentralManagementDeployments
state: enabled
See docs at https://docs.chef.io/resource_chocolatey_package.html.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### The Chocolatey resources are available with any recent version of Chef.
#### We utilise the Chocolatey recipe to install the Chocolatey binaries.
include_recipe "chocolatey"
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
NugetRepositoryUrl = "INTERNAL REPO URL"
### b. Internal Repository Credential ###
#### If required, add the repository access credential here
# NugetRepositoryUsername = "username"
# NugetRepositoryPassword = "password"
### c. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
ChocolateyNupkgUrl = "INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg",
### d. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService"
#### ii. If using a Client Salt, add it here
# ChocolateyCentralManagementClientSalt = "clientsalt"
#### iii. If using a Service Salt, add it here
# ChocolateyCentralManagementServiceSalt = "servicesalt"
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
node['chocolatey']['install vars'] = {
'chocolateyDownloadUrl' => "#{ChocolateyNupkgUrl}",
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# chocolatey_feature 'useFipsCompliantChecksums' do
# action :enable
# end
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
chocolatey_config 'cacheLocation' do
value 'C:\ProgramData\chocolatey\cache'
end
#### Increase timeout to at least 4 hours
chocolatey_config 'commandExecutionTimeoutSeconds' do
value '14400'
end
#### Turn off download progress when running choco through integrations
chocolatey_feature 'showDownloadProgress' do
action :disable
end
### c. Sources ###
#### Remove the default community package repository source
chocolatey_source 'chocolatey' do
action :remove
end
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
chocolatey_source 'ChocolateyInternal' do
source "#{NugetRepositoryUrl}"
priority 1
action :add
end
execute 'ChocolateyInternal' do
command "choco source add --name ChocolateyInternal -s #{NugetRepositoryUrl} -u=#{NugetRepositoryUsername} -p=#{NugetRepositoryPassword} --priority=1"
only_if { NugetRepositoryUsername != nil || NugetRepositoryPassword != nil }
end
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
chocolatey_package 'chocolatey' do
action :upgrade
source "#{NugetRepositoryUrl}"
end
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
chocolatey_package 'chocolatey-license' do
action :install
source "#{NugetRepositoryUrl}"
end
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
chocolatey_source 'chocolatey.licensed' do
action :disable
end
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
chocolatey_package 'chocolatey.extention' do
action install
source "#{NugetRepositoryUrl}"
end
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
chocolatey_feature 'showNonElevatedWarnings' do
action :disable
end
chocolatey_feature 'useBackgroundService' do
action :enable
end
chocolatey_feature 'useBackgroundServiceWithNonAdministratorsOnly' do
action :enable
end
chocolatey_feature 'allowBackgroundServiceUninstallsFromUserInstallsOnly' do
action :enable
end
chocolatey_config 'backgroundServiceAllowedCommands' do
value 'install,upgrade,uninstall'
end
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
chocolatey_package 'chocolatey-agent' do
action install
source "#{NugetRepositoryUrl}"
# user "#{NugetRepositoryUsername}"
# password "#{NugetRepositoryPassword}"
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_config 'CentralManagementServiceUrl' do
value "#{ChocolateyCentralManagementUrl}"
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_config 'centralManagementClientCommunicationSaltAdditivePassword' do
value "#{ChocolateyCentralManagementClientSalt}"
only_if { ChocolateyCentralManagementClientSalt != nil }
end
chocolatey_config 'centralManagementServiceCommunicationSaltAdditivePassword' do
value "#{ChocolateyCentralManagementServiceSalt}"
only_if { ChocolateyCentralManagementServiceSalt != nil }
end
chocolatey_feature 'useChocolateyCentralManagement' do
action :enable
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_feature 'useChocolateyCentralManagementDeployments' do
action :enable
only_if { ChocolateyCentralManagementUrl != nil }
end
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
If Applicable - Chocolatey Configuration/Installation
#requires -Modules cChoco
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. Requires chocolatey\cChoco DSC module to be installed on the machine compiling the DSC manifest
#### NOTE: This will need to be installed before running the DSC portion of this script
if (-not (Get-Module cChoco -ListAvailable)) {
$null = Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
if (($PSGallery = Get-PSRepository -Name PSGallery).InstallationPolicy -ne "Trusted") {
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
}
Install-Module -Name cChoco
if ($PSGallery.InstallationPolicy -ne "Trusted") {
Set-PSRepository -Name PSGallery -InstallationPolicy $PSGallery.InstallationPolicy
}
}
#### ii. Requires a hosted copy of the install.ps1 script
##### This should be available to download without authentication.
##### The original script can be found here: https://community.chocolatey.org/install.ps1
Configuration ChocolateyConfig {
## 2. TOP LEVEL VARIABLES ##
param(
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$NugetRepositoryUrl = "INTERNAL REPO URL",
### b. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
$ChocolateyNupkgUrl = "INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg",
### c. Internal Repository Credential ###
#### If required, add the repository access credential here
# $NugetRepositoryCredential = [PSCredential]::new(
# "username",
# ("password" | ConvertTo-SecureString -AsPlainText -Force)
# ),
### d. Install.ps1 URL
#### The path to the hosted install script:
$ChocolateyInstallPs1Url = "https://community.chocolatey.org/install.ps1"
### e. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService",
#### ii. If using a Client Salt, add it here
# $ChocolateyCentralManagementClientSalt = "clientsalt",
#### iii. If using a Service Salt, add it here
# $ChocolateyCentralManagementServiceSalt = "servicesalt"
)
Import-DscResource -ModuleName PSDesiredStateConfiguration
Import-DscResource -ModuleName cChoco
Node 'localhost' {
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
Environment chocoDownloadUrl {
Name = "chocolateyDownloadUrl"
Value = $ChocolateyNupkgUrl
}
cChocoInstaller installChocolatey {
DependsOn = "[Environment]chocoDownloadUrl"
InstallDir = Join-Path $env:ProgramData "chocolatey"
ChocoInstallScriptUrl = $ChocolateyInstallPs1Url
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# cChocoFeature featureFipsCompliance {
# FeatureName = "useFipsCompliantChecksums"
# }
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
cChocoConfig cacheLocation {
DependsOn = "[cChocoInstaller]installChocolatey"
ConfigName = "cacheLocation"
Value = "C:\ProgramData\chocolatey\cache"
}
#### Increase timeout to at least 4 hours
cChocoConfig commandExecutionTimeoutSeconds {
DependsOn = "[cChocoInstaller]installChocolatey"
ConfigName = "commandExecutionTimeoutSeconds"
Value = 14400
}
#### Turn off download progress when running choco through integrations
cChocoFeature showDownloadProgress {
DependsOn = "[cChocoInstaller]installChocolatey"
FeatureName = "showDownloadProgress"
Ensure = "Absent"
}
### c. Sources ###
#### Remove the default community package repository source
cChocoSource removeCommunityRepository {
DependsOn = "[cChocoInstaller]installChocolatey"
Name = "chocolatey"
Ensure = "Absent"
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here.
#### NOTE: This EXAMPLE may require changes
cChocoSource addInternalSource {
DependsOn = "[cChocoInstaller]installChocolatey"
Name = "ChocolateyInternal"
Source = $NugetRepositoryUrl
Credentials = $NugetRepositoryCredential
Priority = 1
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
cChocoPackageInstaller updateChocolatey {
DependsOn = "[cChocoSource]addInternalSource", "[cChocoSource]removeCommunityRepository"
Name = "chocolatey"
AutoUpgrade = $true
}
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
cChocoPackageInstaller chocolateyLicense {
DependsOn = "[cChocoPackageInstaller]updateChocolatey"
Name = "chocolatey-license"
}
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
Script disableLicensedSource {
DependsOn = "[cChocoPackageInstaller]chocolateyLicense"
GetScript = {
$Source = choco source list --limitoutput | `
ConvertFrom-Csv -Delimiter '|' -Header Name, Source, Disabled | `
Where-Object Name -eq "chocolatey.licensed"
return @{
Result = if ($Source) {
[bool]::Parse($Source.Disabled)
} else {
Write-Warning "Source 'chocolatey.licensed' was not present."
$true # Source does not need disabling
}
}
}
SetScript = {
$null = choco source disable --name "chocolatey.licensed"
}
TestScript = {
$State = [ScriptBlock]::Create($GetScript).Invoke()
return $State.Result
}
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
cChocoPackageInstaller chocolateyLicensedExtension {
DependsOn = "[Script]disableLicensedSource"
Name = "chocolatey.extension"
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
cChocoFeature hideElevatedWarnings {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "showNonElevatedWarnings"
Ensure = "Absent"
}
cChocoFeature useBackgroundService {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "useBackgroundService"
Ensure = "Present"
}
cChocoFeature useBackgroundServiceWithNonAdmins {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "useBackgroundServiceWithNonAdministratorsOnly"
Ensure = "Present"
}
cChocoFeature useBackgroundServiceUninstallsForUserInstalls {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "allowBackgroundServiceUninstallsFromUserInstallsOnly"
Ensure = "Present"
}
cChocoConfig allowedBackgroundServiceCommands {
DependsOn = "[cChocoFeature]useBackgroundService"
ConfigName = "backgroundServiceAllowedCommands"
Value = "install,upgrade,uninstall"
}
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if ($ChocolateyCentralManagementUrl) {
cChocoPackageInstaller chocolateyAgent {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
Name = "chocolatey-agent"
}
cChocoConfig centralManagementServiceUrl {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "CentralManagementServiceUrl"
Value = $ChocolateyCentralManagementUrl
}
if ($ChocolateyCentralManagementClientSalt) {
cChocoConfig centralManagementClientSalt {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "centralManagementClientCommunicationSaltAdditivePassword"
Value = $ChocolateyCentralManagementClientSalt
}
}
if ($ChocolateyCentralManagementServiceSalt) {
cChocoConfig centralManagementServiceSalt {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "centralManagementServiceCommunicationSaltAdditivePassword"
Value = $ChocolateyCentralManagementServiceSalt
}
}
cChocoFeature useCentralManagement {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
FeatureName = "useChocolateyCentralManagement"
Ensure = "Present"
}
cChocoFeature useCentralManagementDeployments {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
FeatureName = "useChocolateyCentralManagementDeployments"
Ensure = "Present"
}
}
}
}
# If working this into an existing configuration with a good method for
$ConfigData = @{
AllNodes = @(
@{
NodeName = "localhost"
PSDscAllowPlainTextPassword = $true
}
)
}
try {
Push-Location $env:Temp
$Config = ChocolateyConfig -ConfigurationData $ConfigData
Start-DscConfiguration -Path $Config.PSParentPath -Wait -Verbose -Force
} finally {
Pop-Location
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. Requires puppetlabs/chocolatey module
#### See https://forge.puppet.com/puppetlabs/chocolatey
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$_repository_url = 'INTERNAL REPO URL'
### b. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
$_choco_download_url = 'INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg'
### c. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $_chocolatey_central_management_url = 'https://chocolatey-central-management:24020/ChocolateyManagementService'
#### ii. If using a Client Salt, add it here
# $_chocolatey_central_management_client_salt = "clientsalt"
#### iii. If using a Service Salt, add it here
# $_chocolatey_central_management_service_salt = 'servicesalt'
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
### Note: `chocolatey_download_url is completely different than normal
### source locations. This is directly to the bare download url for the
### chocolatey.nupkg, similar to what you see when you browse to
### https://community.chocolatey.org/api/v2/package/chocolatey
class {'chocolatey':
chocolatey_download_url => $_choco_download_url,
use_7zip => false,
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
#chocolateyfeature {'useFipsCompliantChecksums':
# ensure => enabled,
#}
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
chocolateyconfig {'cacheLocation':
value => 'C:\ProgramData\chocolatey\cache',
}
#### Increase timeout to at least 4 hours
chocolateyconfig {'commandExecutionTimeoutSeconds':
value => '14400',
}
#### Turn off download progress when running choco through integrations
chocolateyfeature {'showDownloadProgress':
ensure => disabled,
}
### c. Sources ###
#### Remove the default community package repository source
chocolateysource {'chocolatey':
ensure => absent,
location => 'https://community.chocolatey.org/api/v2/',
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE requires changes
chocolateysource {'internal_chocolatey':
ensure => present,
location => $_repository_url,
priority => 1,
username => 'optional',
password => 'optional,not ensured',
bypass_proxy => true,
admin_only => false,
allow_self_service => false,
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
package {'chocolatey':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
}
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/guides/organizations/organizational-deployment-guide#exercise-4-create-a-package-for-the-license
# TODO: Add resource for installing/ensuring the chocolatey-license package
package {'chocolatey-license':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
}
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
## Disabled sources still need all other attributes until
## https://tickets.puppetlabs.com/browse/MODULES-4449 is resolved.
## Password is necessary with user, but not ensurable, so it should not
## matter what it is set to here. If you ever do get into trouble here,
## the password is your license GUID.
chocolateysource {'chocolatey.licensed':
ensure => disabled,
priority => '10',
user => 'customer',
password => '1234',
require => Package['chocolatey-license'],
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
package {'chocolatey.extension':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
require => Package['chocolatey-license'],
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
chocolateyfeature {'showNonElevatedWarnings':
ensure => disabled,
}
chocolateyfeature {'useBackgroundService':
ensure => enabled,
}
chocolateyfeature {'useBackgroundServiceWithNonAdministratorsOnly':
ensure => enabled,
}
chocolateyfeature {'allowBackgroundServiceUninstallsFromUserInstallsOnly':
ensure => enabled,
}
chocolateyconfig {'backgroundServiceAllowedCommands':
value => 'install,upgrade,uninstall',
}
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if $_chocolatey_central_management_url {
package {'chocolatey-agent':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
require => Package['chocolatey-license'],
}
chocolateyconfig {'CentralManagementServiceUrl':
value => $_chocolatey_central_management_url,
}
if $_chocolatey_central_management_client_salt {
chocolateyconfig {'centralManagementClientCommunicationSaltAdditivePassword':
value => $_chocolatey_central_management_client_salt,
}
}
if $_chocolatey_central_management_service_salt {
chocolateyconfig {'centralManagementClientCommunicationSaltAdditivePassword':
value => $_chocolatey_central_management_client_salt,
}
}
chocolateyfeature {'useChocolateyCentralManagement':
ensure => enabled,
require => Package['chocolatey-agent'],
}
chocolateyfeature {'useChocolateyCentralManagementDeployments':
ensure => enabled,
require => Package['chocolatey-agent'],
}
}
Need Help? View our docs or file an issue.
There is already a version of this package in your Script Builder
Current Version | New Version |
---|---|
- Passing
- Failing
- Pending
- Unknown / Exempted
Downloads:
1,848,726
Downloads of v 39.3.48-beta:
427
Last Update:
06 Nov 2017
Package Maintainer(s):
Software Author(s):
- Dropbox
Tags:
dropbox virtual files file admin freeware cross-platform beta- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Mailing List
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Dropbox
This is a prerelease version of Dropbox.
- 1
- 2
- 3
39.3.48-beta | Updated: 06 Nov 2017
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Mailing List
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,848,726
Downloads of v 39.3.48-beta:
427
Maintainer(s):
Software Author(s):
- Dropbox
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
- 1
- 2
- 3
Dropbox
39.3.48-beta
This is a prerelease version of Dropbox.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Dropbox, run the following command from the command line or from PowerShell:
To upgrade Dropbox, run the following command from the command line or from PowerShell:
To uninstall Dropbox, run the following command from the command line or from PowerShell:
Deployment Method:
📝 NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download dropbox --internalize --version=39.3.48-beta --pre --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade dropbox -y --source="'INTERNAL REPO URL'" --version="'39.3.48-beta'" --prerelease [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade dropbox -y --source="'INTERNAL REPO URL'" --version="'39.3.48-beta'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install dropbox
win_chocolatey:
name: dropbox
version: '39.3.48-beta'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'dropbox' do
action :install
source 'INTERNAL REPO URL'
version '39.3.48-beta'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller dropbox
{
Name = "dropbox"
Version = "39.3.48-beta"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'dropbox':
ensure => '39.3.48-beta',
install_options => ['--prerelease'],
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 06 Nov 2017.
Dropbox is a free service that lets you bring all your photos, docs, and videos anywhere. This means that any file you save to your Dropbox will automatically save to all your computers, phones and even the Dropbox website. Dropbox also makes it super easy to share with others, whether you're a student or professional, parent or grandparent. Even if you accidentally spill a latte on your laptop, have no fear! You can relax knowing that Dropbox always has you covered, and none of your stuff will ever be lost.
Features
- Best-in-class sync technology
- Easy and secure sharing
- Anytime, anywhere access
- 256-bit AES and SSL/TLS encryption
- Version history and file recovery
- Advanced sharing permissions
- Password-protected and expiring shared links
- Remote device wipe
- Require two-factor authentication (2FA)
- Granular permissions
- Account transfer tool
- Enables HIPAA compliance
- Dropbox Paper
- MS Office 365 integration
- Dropbox badge
- Commenting
- Plus button
- File requests
- Smart Sync
- Team folder
- Admin console
- Centralized billing
- Company-managed groups
- Unlimited API access to platform partners
- API access for data transport
- Priority email support
- Live chat support
$ErrorActionPreference = 'Stop'
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = "Dropbox*"
url = 'https://dl-web.dropbox.com/u/17/Dropbox%2039.3.48.exe'
checksum = '98608ff2ac081d37db300311161a740fe98911f6bf958ac0b53de9c3a698d0d3'
fileType = 'exe'
checksumType = 'sha256'
silentArgs = '/s'
validExitCodes = @(0, 1641, 3010)
}
Install-ChocolateyPackage @packageArgs
if (Get-Process -Name Dropbox -ErrorAction SilentlyContinue) {
Stop-Process -processname Dropbox
}
. (Join-Path (Split-Path $MyInvocation.MyCommand.Definition -Parent) 'helpers.ps1')
$packageName = 'dropbox'
$fileType = 'exe'
$silentArgs = '/S'
$uninstallProps = getDropboxRegProps
if ($uninstallProps -and $uninstallProps.UninstallString) {
Uninstall-ChocolateyPackage $packageName $fileType $silentArgs $uninstallerPath.UninstallString
}
function getDropboxRegProps() {
$uninstallRegistryPath = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\Dropbox'
if (Test-Path $uninstallRegistryPath) {
$props = @{
"DisplayVersion" = (Get-ItemProperty $uninstallRegistryPath).DisplayVersion
"UninstallString" = (Get-ItemProperty $uninstallRegistryPath).UninstallString
}
}
return $props
}
Log in or click on link to see number of positives.
- dropbox.39.3.48-beta.nupkg (489f85d7463e) - ## / 61
- Dropbox 39.3.48.exe (98608ff2ac08) - ## / 67
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Dropbox 150.3.4963-beta | 9 | Friday, May 27, 2022 | Approved | |
Dropbox 150.3.4929-beta | 21 | Wednesday, May 25, 2022 | Approved | |
Dropbox 149.4.4568 | 21813 | Tuesday, May 24, 2022 | Approved | |
Dropbox 149.3.4562-beta | 20 | Monday, May 23, 2022 | Approved | |
Dropbox 149.3.4558-beta | 31 | Thursday, May 19, 2022 | Approved | |
Dropbox 149.3.4541-beta | 34 | Friday, May 13, 2022 | Approved | |
Dropbox 149.3.4526-beta | 23 | Tuesday, May 10, 2022 | Approved | |
Dropbox 148.4.4519 | 38860 | Tuesday, May 10, 2022 | Approved | |
Dropbox 148.3.4511-beta | 29 | Thursday, May 5, 2022 | Approved | |
Dropbox 148.3.4504-beta | 26 | Monday, May 2, 2022 | Approved | |
Dropbox 148.3.4469-beta | 30 | Thursday, April 28, 2022 | Approved | |
Dropbox 147.4.4800 | 37989 | Tuesday, April 26, 2022 | Approved | |
Dropbox 147.3.4786-beta | 29 | Friday, April 22, 2022 | Approved | |
Dropbox 147.3.4765-beta | 38 | Friday, April 15, 2022 | Approved | |
Dropbox 147.3.4761-beta | 27 | Wednesday, April 13, 2022 | Approved | |
Dropbox 146.4.4836 | 36618 | Tuesday, April 12, 2022 | Approved | |
Dropbox 146.3.4820-beta | 32 | Friday, April 8, 2022 | Approved | |
Dropbox 146.3.4795-beta | 41 | Tuesday, March 29, 2022 | Approved | |
Dropbox 145.4.4921 | 36424 | Tuesday, March 29, 2022 | Approved | |
Dropbox 145.3.4915-beta | 28 | Friday, March 25, 2022 | Approved | |
Dropbox 145.3.4888-beta | 33 | Thursday, March 17, 2022 | Approved | |
Dropbox 145.3.4865-beta | 22 | Tuesday, March 15, 2022 | Approved | |
Dropbox 144.4.4491 | 33399 | Wednesday, March 16, 2022 | Approved | |
Dropbox 144.3.4464-beta | 42 | Thursday, March 10, 2022 | Approved | |
Dropbox 144.3.4428-beta | 37 | Friday, March 4, 2022 | Approved | |
Dropbox 144.3.4426-beta | 27 | Wednesday, March 2, 2022 | Approved | |
Dropbox 143.3.4157-beta | 27 | Monday, February 28, 2022 | Approved | |
Dropbox 143.3.4145-beta | 34 | Thursday, February 24, 2022 | Approved | |
Dropbox 143.3.4128-beta | 28 | Thursday, February 24, 2022 | Approved | |
Dropbox 143.3.4090-beta | 54 | Saturday, February 19, 2022 | Approved | |
Dropbox 143.3.4082-beta | 29 | Friday, February 18, 2022 | Approved | |
Dropbox 142.4.4197 | 42278 | Wednesday, February 16, 2022 | Approved | |
Dropbox 142.3.4187-beta | 36 | Friday, February 11, 2022 | Approved | |
Dropbox 142.3.4155-beta | 37 | Wednesday, February 9, 2022 | Approved | |
Dropbox 142.3.4086-beta | 41 | Thursday, February 3, 2022 | Approved | |
Dropbox 141.4.3299 | 32077 | Thursday, February 3, 2022 | Approved | |
Dropbox 141.3.3257-beta | 45 | Friday, January 28, 2022 | Approved | |
Dropbox 141.3.3144-beta | 41 | Friday, January 21, 2022 | Approved | |
Dropbox 140.4.1951 | 28667 | Thursday, January 20, 2022 | Approved | |
Dropbox 140.3.1928-beta | 43 | Friday, January 14, 2022 | Approved | |
Dropbox 140.3.1903-beta | 26 | Wednesday, January 12, 2022 | Approved | |
Dropbox 140.3.1894-beta | 27 | Wednesday, January 12, 2022 | Approved | |
Dropbox 140.3.1861-beta | 29 | Friday, January 7, 2022 | Approved | |
Dropbox 140.3.1852-beta | 33 | Tuesday, January 4, 2022 | Approved | |
Dropbox 139.4.4896 | 28585 | Wednesday, January 5, 2022 | Approved | |
Dropbox 139.3.4817-beta | 41 | Wednesday, December 29, 2021 | Approved | |
Dropbox 139.3.4798-beta | 43 | Thursday, December 23, 2021 | Approved | |
Dropbox 139.3.4797-beta | 26 | Wednesday, December 22, 2021 | Approved | |
Dropbox 138.4.2392 | 23211 | Wednesday, December 22, 2021 | Approved | |
Dropbox 138.3.2361-beta | 40 | Thursday, December 16, 2021 | Approved | |
Dropbox 138.3.2356-beta | 43 | Wednesday, December 15, 2021 | Approved | |
Dropbox 138.3.2340-beta | 37 | Friday, December 10, 2021 | Approved | |
Dropbox 138.3.2325-beta | 33 | Wednesday, December 8, 2021 | Approved | |
Dropbox 137.3.6403-beta | 43 | Friday, December 3, 2021 | Approved | |
Dropbox 137.3.6396-beta | 31 | Wednesday, December 1, 2021 | Approved | |
Dropbox 136.4.4345 | 28185 | Wednesday, December 1, 2021 | Approved | |
Dropbox 136.3.4333-beta | 64 | Friday, November 19, 2021 | Approved | |
Dropbox 136.3.4318-beta | 55 | Saturday, November 13, 2021 | Approved | |
Dropbox 136.3.4307-beta | 44 | Thursday, November 11, 2021 | Approved | |
Dropbox 135.4.4221 | 26621 | Friday, November 12, 2021 | Approved | |
Dropbox 135.3.4177-beta | 48 | Thursday, November 4, 2021 | Approved | |
Dropbox 135.3.4173-beta | 38 | Wednesday, November 3, 2021 | Approved | |
Dropbox 135.3.4169-beta | 52 | Wednesday, October 27, 2021 | Approved | |
Dropbox 134.4.4115 | 25684 | Tuesday, October 26, 2021 | Approved | |
Dropbox 134.3.4111-beta | 53 | Friday, October 22, 2021 | Approved | |
Dropbox 134.3.4109-beta | 43 | Thursday, October 21, 2021 | Approved | |
Dropbox 134.3.4107-beta | 79 | Saturday, October 16, 2021 | Approved | |
Dropbox 134.3.4102-beta | 63 | Wednesday, October 13, 2021 | Approved | |
Dropbox 133.4.4089 | 24931 | Tuesday, October 12, 2021 | Approved | |
Dropbox 133.3.4085-beta | 65 | Thursday, October 7, 2021 | Approved | |
Dropbox 133.3.4076-beta | 62 | Friday, October 1, 2021 | Approved | |
Dropbox 133.3.4069-beta | 56 | Wednesday, September 29, 2021 | Approved | |
Dropbox 132.4.3800 | 24139 | Wednesday, September 29, 2021 | Approved | |
Dropbox 132.3.3795-beta | 51 | Friday, September 24, 2021 | Approved | |
Dropbox 132.3.3780-beta | 58 | Friday, September 17, 2021 | Approved | |
Dropbox 132.3.3750-beta | 50 | Wednesday, September 15, 2021 | Approved | |
Dropbox 131.4.3968 | 20453 | Tuesday, September 14, 2021 | Approved | |
Dropbox 131.3.3962-beta | 47 | Friday, September 10, 2021 | Approved | |
Dropbox 131.3.3957-beta | 35 | Friday, September 10, 2021 | Approved | |
Dropbox 131.3.3938-beta | 58 | Friday, September 3, 2021 | Approved | |
Dropbox 131.3.3936-beta | 46 | Wednesday, September 1, 2021 | Approved | |
Dropbox 130.4.4978 | 17927 | Tuesday, August 31, 2021 | Approved | |
Dropbox 130.3.4964-beta | 44 | Monday, August 30, 2021 | Approved | |
Dropbox 130.3.4951-beta | 59 | Friday, August 27, 2021 | Approved | |
Dropbox 130.3.4948-beta | 48 | Tuesday, August 24, 2021 | Approved | |
Dropbox 130.3.4940-beta | 56 | Friday, August 20, 2021 | Approved | |
Dropbox 130.3.4934-beta | 45 | Wednesday, August 18, 2021 | Approved | |
Dropbox 129.4.3571 | 16466 | Wednesday, August 18, 2021 | Approved | |
Dropbox 129.3.3566-beta | 51 | Friday, August 13, 2021 | Approved | |
Dropbox 129.3.3513-beta | 78 | Thursday, August 5, 2021 | Approved | |
Dropbox 128.4.2870 | 14714 | Friday, August 6, 2021 | Approved | |
Dropbox 128.3.2857-beta | 94 | Friday, July 30, 2021 | Approved | |
Dropbox 128.3.2849-beta | 63 | Wednesday, July 21, 2021 | Approved | |
Dropbox 127.4.4265 | 16656 | Wednesday, July 21, 2021 | Approved | |
Dropbox 127.3.4263-beta | 49 | Thursday, July 15, 2021 | Approved | |
Dropbox 127.3.4244-beta | 60 | Thursday, July 8, 2021 | Approved | |
Dropbox 126.4.4618 | 16433 | Wednesday, July 7, 2021 | Approved | |
Dropbox 126.3.4577-beta | 62 | Friday, June 25, 2021 | Approved | |
Dropbox 125.4.3474 | 15781 | Wednesday, June 23, 2021 | Approved | |
Dropbox 125.3.3472-beta | 41 | Tuesday, June 22, 2021 | Approved | |
Dropbox 125.3.3463-beta | 41 | Friday, June 18, 2021 | Approved | |
Dropbox 125.3.3450-beta | 60 | Monday, June 14, 2021 | Approved | |
Dropbox 125.3.3444-beta | 53 | Thursday, June 10, 2021 | Approved | |
Dropbox 124.4.4912 | 14351 | Thursday, June 10, 2021 | Approved | |
Dropbox 124.4.4910 | 10591 | Wednesday, June 9, 2021 | Approved | |
Dropbox 124.3.4898-beta | 48 | Friday, June 4, 2021 | Approved | |
Dropbox 124.3.4875-beta | 64 | Thursday, May 27, 2021 | Approved | |
Dropbox 123.4.4832 | 16654 | Wednesday, May 26, 2021 | Approved | |
Dropbox 123.3.4825-beta | 48 | Friday, May 21, 2021 | Approved | |
Dropbox 123.3.4808-beta | 54 | Saturday, May 15, 2021 | Approved | |
Dropbox 123.3.4805-beta | 46 | Thursday, May 13, 2021 | Approved | |
Dropbox 122.4.4867 | 16329 | Thursday, May 13, 2021 | Approved | |
Dropbox 122.3.4866-beta | 48 | Wednesday, May 12, 2021 | Approved | |
Dropbox 122.3.4837-beta | 58 | Friday, May 7, 2021 | Approved | |
Dropbox 122.3.4815-beta | 48 | Tuesday, May 4, 2021 | Approved | |
Dropbox 122.3.4786-beta | 66 | Wednesday, April 28, 2021 | Approved | |
Dropbox 121.4.4267 | 15221 | Tuesday, April 27, 2021 | Approved | |
Dropbox 121.3.4266-beta | 55 | Thursday, April 22, 2021 | Approved | |
Dropbox 121.3.4241-beta | 62 | Wednesday, April 14, 2021 | Approved | |
Dropbox 120.4.4598 | 11365 | Thursday, April 15, 2021 | Approved | |
Dropbox 120.3.4579-beta | 67 | Thursday, April 8, 2021 | Approved | |
Dropbox 120.3.4554-beta | 83 | Saturday, April 3, 2021 | Approved | |
Dropbox 120.3.4545-beta | 59 | Wednesday, March 31, 2021 | Approved | |
Dropbox 119.4.1772 | 15731 | Wednesday, March 31, 2021 | Approved | |
Dropbox 119.3.1762-beta | 76 | Tuesday, March 23, 2021 | Approved | |
Dropbox 119.3.1746-beta | 63 | Friday, March 19, 2021 | Approved | |
Dropbox 118.4.460 | 14815 | Wednesday, March 17, 2021 | Approved | |
Dropbox 118.3.448-beta | 75 | Friday, March 12, 2021 | Approved | |
Dropbox 118.3.423-beta | 85 | Saturday, March 6, 2021 | Approved | |
Dropbox 118.3.421-beta | 70 | Thursday, March 4, 2021 | Approved | |
Dropbox 117.4.378 | 11164 | Friday, March 5, 2021 | Approved | |
Dropbox 117.3.356-beta | 75 | Friday, February 26, 2021 | Approved | |
Dropbox 117.3.353-beta | 60 | Tuesday, February 23, 2021 | Approved | |
Dropbox 117.3.350-beta | 67 | Friday, February 19, 2021 | Approved | |
Dropbox 117.3.344-beta | 57 | Wednesday, February 17, 2021 | Approved | |
Dropbox 116.4.368 | 14690 | Wednesday, February 17, 2021 | Approved | |
Dropbox 116.3.354-beta | 76 | Friday, February 12, 2021 | Approved | |
Dropbox 116.3.324-beta | 81 | Saturday, February 6, 2021 | Approved | |
Dropbox 116.3.307-beta | 86 | Thursday, February 4, 2021 | Approved | |
Dropbox 115.4.601 | 14722 | Thursday, February 4, 2021 | Approved | |
Dropbox 115.3.593-beta | 64 | Wednesday, February 3, 2021 | Approved | |
Dropbox 115.3.560-beta | 70 | Friday, January 29, 2021 | Approved | |
Dropbox 115.3.553-beta | 55 | Thursday, January 28, 2021 | Approved | |
Dropbox 115.3.529-beta | 82 | Saturday, January 23, 2021 | Approved | |
Dropbox 115.3.493-beta | 80 | Wednesday, January 20, 2021 | Approved | |
Dropbox 114.4.426 | 12196 | Tuesday, January 26, 2021 | Approved | |
Dropbox 114.3.363-beta | 75 | Friday, January 15, 2021 | Approved | |
Dropbox 113.4.507 | 15525 | Saturday, January 16, 2021 | Approved | |
Dropbox 113.3.427-beta | 100 | Tuesday, December 22, 2020 | Approved | |
Dropbox 112.4.321 | 18154 | Wednesday, December 16, 2020 | Approved | |
Dropbox 112.3.293-beta | 80 | Friday, December 11, 2020 | Approved | |
Dropbox 112.3.254-beta | 92 | Saturday, December 5, 2020 | Approved | |
Dropbox 112.3.247-beta | 77 | Wednesday, December 2, 2020 | Approved | |
Dropbox 111.4.472 | 14977 | Thursday, December 3, 2020 | Approved | |
Dropbox 111.3.447-beta | 93 | Saturday, November 21, 2020 | Approved | |
Dropbox 111.3.437-beta | 66 | Friday, November 20, 2020 | Approved | |
Dropbox 110.4.458 | 13516 | Tuesday, November 17, 2020 | Approved | |
Dropbox 110.3.425-beta | 78 | Friday, November 13, 2020 | Approved | |
Dropbox 110.3.413-beta | 90 | Saturday, November 7, 2020 | Approved | |
Dropbox 110.3.404-beta | 64 | Wednesday, November 4, 2020 | Approved | |
Dropbox 109.4.517 | 12452 | Thursday, November 5, 2020 | Approved | |
Dropbox 109.3.487-beta | 102 | Thursday, October 29, 2020 | Approved | |
Dropbox 109.3.478-beta | 89 | Saturday, October 24, 2020 | Approved | |
Dropbox 109.3.471-beta | 88 | Friday, October 16, 2020 | Approved | |
Dropbox 108.4.453 | 11215 | Thursday, October 22, 2020 | Approved | |
Dropbox 108.3.436-beta | 97 | Friday, October 9, 2020 | Approved | |
Dropbox 108.3.430-beta | 66 | Tuesday, October 6, 2020 | Approved | |
Dropbox 107.4.443 | 10865 | Wednesday, October 7, 2020 | Approved | |
Dropbox 107.3.441-beta | 95 | Friday, October 2, 2020 | Approved | |
Dropbox 107.3.416-beta | 95 | Tuesday, September 29, 2020 | Approved | |
Dropbox 107.3.412-beta | 117 | Thursday, September 24, 2020 | Approved | |
Dropbox 106.4.368 | 10395 | Wednesday, September 23, 2020 | Approved | |
Dropbox 106.3.355-beta | 95 | Friday, September 18, 2020 | Approved | |
Dropbox 106.3.351-beta | 92 | Wednesday, September 16, 2020 | Approved | |
Dropbox 106.3.349-beta | 87 | Tuesday, September 15, 2020 | Approved | |
Dropbox 105.4.651 | 10163 | Thursday, September 10, 2020 | Approved | |
Dropbox 105.4.649 | 4054 | Wednesday, September 9, 2020 | Approved | |
Dropbox 105.3.638-beta | 107 | Saturday, August 29, 2020 | Approved | |
Dropbox 105.3.635-beta | 92 | Wednesday, August 26, 2020 | Approved | |
Dropbox 105.3.379-beta | 129 | Thursday, August 13, 2020 | Approved | |
Dropbox 104.4.175 | 13590 | Thursday, August 13, 2020 | Approved | |
Dropbox 104.3.170-beta | 89 | Saturday, August 8, 2020 | Approved | |
Dropbox 103.4.383 | 4524 | Saturday, August 8, 2020 | Approved | |
Dropbox 103.3.380-beta | 94 | Friday, July 31, 2020 | Approved | |
Dropbox 103.3.377-beta | 142 | Saturday, July 25, 2020 | Approved | |
Dropbox 103.3.372-beta | 126 | Wednesday, July 22, 2020 | Approved | |
Dropbox 102.4.431 | 10343 | Wednesday, July 22, 2020 | Approved | |
Dropbox 102.3.429-beta | 73 | Tuesday, July 21, 2020 | Approved | |
Dropbox 101.4.434 | 1392 | Tuesday, July 21, 2020 | Approved | |
Dropbox 99.4.501 | 16018 | Wednesday, June 10, 2020 | Approved | |
Dropbox 99.4.501-beta | 136 | Wednesday, June 10, 2020 | Approved | |
Dropbox 99.3.496 | 3644 | Tuesday, June 9, 2020 | Approved | |
Dropbox 99.3.496-beta | 157 | Friday, June 5, 2020 | Approved | |
Dropbox 99.3.490-beta | 169 | Tuesday, June 2, 2020 | Approved | |
Dropbox 99.3.488-beta | 181 | Thursday, May 28, 2020 | Approved | |
Dropbox 98.4.158 | 9547 | Thursday, May 28, 2020 | Approved | |
Dropbox 98.3.151-beta | 222 | Friday, May 15, 2020 | Approved | |
Dropbox 98.3.150-beta | 204 | Wednesday, May 13, 2020 | Approved | |
Dropbox 97.4.467 | 10872 | Tuesday, May 12, 2020 | Approved | |
Dropbox 97.4.467-beta | 102 | Tuesday, May 12, 2020 | Approved | |
Dropbox 97.3.465-beta | 155 | Tuesday, May 12, 2020 | Approved | |
Dropbox 97.3.460-beta | 169 | Saturday, May 9, 2020 | Approved | |
Dropbox 97.3.451 | 8602 | Sunday, May 3, 2020 | Approved | |
Dropbox 97.3.451-beta | 185 | Friday, May 1, 2020 | Approved | |
Dropbox 97.3.448-beta | 170 | Tuesday, April 28, 2020 | Approved | |
Dropbox 96.4.172 | 5117 | Wednesday, April 29, 2020 | Approved | |
Dropbox 96.3.168-beta | 125 | Monday, April 27, 2020 | Approved | |
Dropbox 96.3.166 | 4992 | Saturday, April 25, 2020 | Approved | |
Dropbox 96.3.166-beta | 140 | Friday, April 24, 2020 | Approved | |
Dropbox 96.3.162-beta | 130 | Monday, April 20, 2020 | Approved | |
Dropbox 96.3.159-beta | 172 | Thursday, April 16, 2020 | Approved | |
Dropbox 95.4.441 | 6799 | Thursday, April 16, 2020 | Approved | |
Dropbox 95.4.441-beta | 163 | Thursday, April 16, 2020 | Approved | |
Dropbox 95.3.425-beta | 158 | Wednesday, April 1, 2020 | Approved | |
Dropbox 94.4.384 | 8157 | Thursday, April 2, 2020 | Approved | |
Dropbox 94.3.379-beta | 154 | Friday, March 27, 2020 | Approved | |
Dropbox 94.3.371 | 7730 | Sunday, March 22, 2020 | Approved | |
Dropbox 94.3.371-beta | 140 | Friday, March 20, 2020 | Approved | |
Dropbox 93.4.273 | 3794 | Friday, March 20, 2020 | Approved | |
Dropbox 93.3.269-beta | 125 | Friday, March 13, 2020 | Approved | |
Dropbox 93.3.267-beta | 126 | Thursday, March 12, 2020 | Approved | |
Dropbox 93.3.262-beta | 150 | Friday, March 6, 2020 | Approved | |
Dropbox 93.3.258 | 9452 | Thursday, March 5, 2020 | Approved | |
Dropbox 93.3.258-beta | 126 | Thursday, March 5, 2020 | Approved | |
Dropbox 92.4.382 | 810 | Thursday, March 5, 2020 | Approved | |
Dropbox 92.3.375-beta | 138 | Friday, February 28, 2020 | Approved | |
Dropbox 92.3.372-beta | 160 | Tuesday, February 25, 2020 | Approved | |
Dropbox 92.3.365-beta | 152 | Thursday, February 20, 2020 | Approved | |
Dropbox 91.4.548 | 7577 | Thursday, February 20, 2020 | Approved | |
Dropbox 91.3.541-beta | 147 | Saturday, February 15, 2020 | Approved | |
Dropbox 91.3.536-beta | 167 | Tuesday, February 11, 2020 | Approved | |
Dropbox 91.3.534-beta | 145 | Saturday, February 8, 2020 | Approved | |
Dropbox 90.4.307 | 10509 | Wednesday, February 5, 2020 | Approved | |
Dropbox 90.4.307-beta | 176 | Wednesday, February 5, 2020 | Approved | |
Dropbox 90.3.298-beta | 160 | Friday, January 31, 2020 | Approved | |
Dropbox 90.3.292-beta | 135 | Saturday, January 25, 2020 | Approved | |
Dropbox 90.3.291-beta | 173 | Wednesday, January 22, 2020 | Approved | |
Dropbox 89.4.278 | 7390 | Thursday, January 23, 2020 | Approved | |
Dropbox 89.3.272-beta | 148 | Friday, January 17, 2020 | Approved | |
Dropbox 89.3.268 | 7807 | Sunday, January 12, 2020 | Approved | |
Dropbox 89.3.268-beta | 128 | Friday, January 10, 2020 | Approved | |
Dropbox 88.4.172 | 4276 | Wednesday, January 8, 2020 | Approved | |
Dropbox 88.4.172-beta | 107 | Wednesday, January 8, 2020 | Approved | |
Dropbox 88.3.167-beta | 154 | Monday, December 23, 2019 | Approved | |
Dropbox 88.3.166-beta | 187 | Saturday, December 21, 2019 | Approved | |
Dropbox 88.3.161-beta | 180 | Wednesday, December 18, 2019 | Approved | |
Dropbox 87.4.138 | 8887 | Wednesday, December 18, 2019 | Approved | |
Dropbox 87.3.131-beta | 174 | Thursday, December 12, 2019 | Approved | |
Dropbox 87.3.127-beta | 165 | Saturday, December 7, 2019 | Approved | |
Dropbox 87.3.125-beta | 141 | Friday, December 6, 2019 | Approved | |
Dropbox 87.3.122-beta | 199 | Wednesday, November 27, 2019 | Approved | |
Dropbox 86.4.146 | 7217 | Friday, December 6, 2019 | Approved | |
Dropbox 86.3.141-beta | 149 | Saturday, November 23, 2019 | Approved | |
Dropbox 86.3.130-beta | 178 | Saturday, November 16, 2019 | Approved | |
Dropbox 86.3.127-beta | 169 | Friday, November 15, 2019 | Approved | |
Dropbox 85.4.155 | 13099 | Friday, November 15, 2019 | Approved | |
Dropbox 85.3.147-beta | 151 | Tuesday, November 12, 2019 | Approved | |
Dropbox 85.3.138 | 8737 | Monday, November 4, 2019 | Approved | |
Dropbox 85.3.138-beta | 157 | Saturday, November 2, 2019 | Approved | |
Dropbox 85.3.133-beta | 155 | Wednesday, October 30, 2019 | Approved | |
Dropbox 84.4.170 | 4756 | Thursday, October 31, 2019 | Approved | |
Dropbox 84.3.160-beta | 164 | Friday, October 25, 2019 | Approved | |
Dropbox 84.3.155-beta | 180 | Tuesday, October 22, 2019 | Approved | |
Dropbox 84.3.145-beta | 154 | Wednesday, October 16, 2019 | Approved | |
Dropbox 83.4.152 | 9317 | Wednesday, October 16, 2019 | Approved | |
Dropbox 83.3.146-beta | 139 | Monday, October 14, 2019 | Approved | |
Dropbox 83.3.140 | 3279 | Sunday, October 13, 2019 | Approved | |
Dropbox 83.3.140-beta | 155 | Wednesday, October 9, 2019 | Approved | |
Dropbox 83.3.129-beta | 193 | Friday, October 4, 2019 | Approved | |
Dropbox 83.3.123-beta | 180 | Wednesday, October 2, 2019 | Approved | |
Dropbox 82.4.156 | 2941 | Thursday, October 10, 2019 | Approved | |
Dropbox 82.4.155 | 5874 | Thursday, October 3, 2019 | Approved | |
Dropbox 82.3.148-beta | 148 | Friday, September 27, 2019 | Approved | |
Dropbox 82.3.138-beta | 156 | Tuesday, September 24, 2019 | Approved | |
Dropbox 82.3.133-beta | 154 | Friday, September 20, 2019 | Approved | |
Dropbox 81.4.195 | 8095 | Wednesday, September 18, 2019 | Approved | |
Dropbox 81.4.195-beta | 135 | Wednesday, September 18, 2019 | Approved | |
Dropbox 81.4.193 | 1632 | Wednesday, September 18, 2019 | Approved | |
Dropbox 81.3.190-beta | 188 | Thursday, September 12, 2019 | Approved | |
Dropbox 81.3.185-beta | 158 | Friday, September 6, 2019 | Approved | |
Dropbox 81.3.183-beta | 148 | Thursday, September 5, 2019 | Approved | |
Dropbox 80.4.127 | 8028 | Monday, September 9, 2019 | Approved | |
Dropbox 80.4.126 | 3434 | Friday, September 6, 2019 | Approved | |
Dropbox 80.3.119 | 4559 | Sunday, September 1, 2019 | Approved | |
Dropbox 80.3.119-beta | 184 | Thursday, August 29, 2019 | Approved | |
Dropbox 80.3.116-beta | 138 | Friday, August 23, 2019 | Approved | |
Dropbox 80.3.111-beta | 172 | Friday, August 16, 2019 | Approved | |
Dropbox 80.3.110-beta | 151 | Wednesday, August 14, 2019 | Approved | |
Dropbox 79.4.143 | 9816 | Wednesday, August 14, 2019 | Approved | |
Dropbox 79.3.136-beta | 157 | Friday, August 9, 2019 | Approved | |
Dropbox 79.3.125-beta | 130 | Tuesday, August 6, 2019 | Approved | |
Dropbox 79.3.121 | 8153 | Thursday, August 1, 2019 | Approved | |
Dropbox 79.3.121-beta | 124 | Thursday, August 1, 2019 | Approved | |
Dropbox 78.4.119 | 2343 | Wednesday, July 31, 2019 | Approved | |
Dropbox 78.4.119-beta | 146 | Wednesday, July 31, 2019 | Approved | |
Dropbox 78.3.114-beta | 184 | Thursday, July 25, 2019 | Approved | |
Dropbox 78.3.112 | 4840 | Thursday, July 25, 2019 | Approved | |
Dropbox 78.3.112-beta | 134 | Monday, July 22, 2019 | Approved | |
Dropbox 78.3.110-beta | 125 | Saturday, July 20, 2019 | Approved | |
Dropbox 78.3.109 | 5205 | Friday, July 19, 2019 | Approved | |
Dropbox 78.3.109-beta | 125 | Wednesday, July 17, 2019 | Approved | |
Dropbox 77.4.131 | 2559 | Wednesday, July 17, 2019 | Approved | |
Dropbox 77.3.127-beta | 144 | Friday, July 12, 2019 | Approved | |
Dropbox 77.3.125-beta | 193 | Tuesday, July 9, 2019 | Approved | |
Dropbox 76.4.126 | 5973 | Tuesday, July 9, 2019 | Approved | |
Dropbox 76.3.120-beta | 177 | Thursday, June 27, 2019 | Approved | |
Dropbox 76.3.110 | 9986 | Saturday, June 22, 2019 | Approved | |
Dropbox 76.3.110-beta | 147 | Friday, June 21, 2019 | Approved | |
Dropbox 76.3.107-beta | 120 | Wednesday, June 19, 2019 | Approved | |
Dropbox 75.3.133-beta | 129 | Monday, June 17, 2019 | Approved | |
Dropbox 75.3.131-beta | 165 | Friday, June 14, 2019 | Approved | |
Dropbox 75.3.115 | 10054 | Sunday, June 9, 2019 | Approved | |
Dropbox 75.3.115-beta | 212 | Saturday, June 8, 2019 | Approved | |
Dropbox 75.3.114-beta | 136 | Wednesday, June 5, 2019 | Approved | |
Dropbox 74.4.115 | 4117 | Wednesday, June 5, 2019 | Approved | |
Dropbox 74.3.110-beta | 160 | Friday, May 31, 2019 | Approved | |
Dropbox 74.3.109-beta | 141 | Saturday, May 25, 2019 | Approved | |
Dropbox 74.3.103-beta | 160 | Wednesday, May 22, 2019 | Approved | |
Dropbox 73.4.118 | 7999 | Thursday, May 23, 2019 | Approved | |
Dropbox 73.3.100-beta | 153 | Saturday, May 18, 2019 | Approved | |
Dropbox 73.3.94-beta | 198 | Monday, May 13, 2019 | Approved | |
Dropbox 73.3.91-beta | 175 | Friday, May 10, 2019 | Approved | |
Dropbox 72.4.136 | 10181 | Wednesday, May 8, 2019 | Approved | |
Dropbox 72.4.136-beta | 148 | Wednesday, May 8, 2019 | Approved | |
Dropbox 72.3.132-beta | 167 | Saturday, May 4, 2019 | Approved | |
Dropbox 72.3.127-beta | 180 | Wednesday, May 1, 2019 | Approved | |
Dropbox 72.3.126-beta | 166 | Friday, April 26, 2019 | Approved | |
Dropbox 72.3.124-beta | 174 | Tuesday, April 23, 2019 | Approved | |
Dropbox 71.4.108.20190503 | 3847 | Friday, May 3, 2019 | Approved | |
Dropbox 71.4.108 | 8397 | Wednesday, April 24, 2019 | Approved | |
Dropbox 71.3.105 | 5540 | Friday, April 19, 2019 | Approved | |
Dropbox 71.3.105-beta | 127 | Friday, April 19, 2019 | Approved | |
Dropbox 71.3.102-beta | 193 | Saturday, April 6, 2019 | Approved | |
Dropbox 71.3.99-beta | 117 | Thursday, April 4, 2019 | Approved | |
Dropbox 70.4.93 | 10462 | Friday, April 5, 2019 | Approved | |
Dropbox 70.3.89-beta | 110 | Thursday, April 4, 2019 | Approved | |
Dropbox 70.3.87-beta | 180 | Saturday, March 30, 2019 | Approved | |
Dropbox 70.3.85-beta | 169 | Friday, March 29, 2019 | Approved | |
Dropbox 70.3.76-beta | 180 | Saturday, March 23, 2019 | Approved | |
Dropbox 70.3.70-beta | 167 | Tuesday, March 19, 2019 | Approved | |
Dropbox 69.4.102 | 12834 | Wednesday, March 20, 2019 | Approved | |
Dropbox 69.3.96-beta | 200 | Friday, March 15, 2019 | Approved | |
Dropbox 69.3.90 | 8599 | Tuesday, March 12, 2019 | Approved | |
Dropbox 69.3.90-beta | 144 | Tuesday, March 12, 2019 | Approved | |
Dropbox 69.3.82-beta | 137 | Thursday, March 7, 2019 | Approved | |
Dropbox 68.4.102 | 7090 | Wednesday, March 6, 2019 | Approved | |
Dropbox 68.4.102-beta | 106 | Wednesday, March 6, 2019 | Approved | |
Dropbox 68.3.95-beta | 169 | Friday, March 1, 2019 | Approved | |
Dropbox 68.3.92-beta | 158 | Saturday, February 23, 2019 | Approved | |
Dropbox 68.3.84-beta | 171 | Wednesday, February 20, 2019 | Approved | |
Dropbox 67.4.83 | 6674 | Thursday, February 21, 2019 | Approved | |
Dropbox 67.3.79-beta | 193 | Friday, February 15, 2019 | Approved | |
Dropbox 67.3.78-beta | 183 | Saturday, February 9, 2019 | Approved | |
Dropbox 67.3.77-beta | 192 | Wednesday, February 6, 2019 | Approved | |
Dropbox 66.4.84 | 7540 | Wednesday, February 6, 2019 | Approved | |
Dropbox 66.3.81-beta | 171 | Thursday, January 31, 2019 | Approved | |
Dropbox 66.3.77-beta | 194 | Tuesday, January 29, 2019 | Approved | |
Dropbox 66.3.72 | 9132 | Thursday, January 24, 2019 | Approved | |
Dropbox 66.3.72-beta | 176 | Wednesday, January 23, 2019 | Approved | |
Dropbox 65.4.177 | 1754 | Wednesday, January 23, 2019 | Approved | |
Dropbox 65.3.174 | 1318 | Tuesday, January 22, 2019 | Approved | |
Dropbox 65.3.174-beta | 159 | Friday, January 18, 2019 | Approved | |
Dropbox 65.3.168-beta | 216 | Friday, January 11, 2019 | Approved | |
Dropbox 65.3.160-beta | 184 | Wednesday, January 9, 2019 | Approved | |
Dropbox 64.4.141 | 6322 | Wednesday, January 9, 2019 | Approved | |
Dropbox 64.3.123 | 4644 | Sunday, December 30, 2018 | Approved | |
Dropbox 64.3.123-beta | 186 | Friday, December 21, 2018 | Approved | |
Dropbox 64.3.121 | 5568 | Tuesday, December 18, 2018 | Approved | |
Dropbox 64.3.121-beta | 195 | Thursday, December 13, 2018 | Approved | |
Dropbox 64.3.120-beta | 138 | Thursday, December 13, 2018 | Approved | |
Dropbox 63.4.107 | 3885 | Thursday, December 13, 2018 | Approved | |
Dropbox 63.4.102 | 374 | Thursday, December 13, 2018 | Approved | |
Dropbox 63.4.100 | 3860 | Wednesday, December 12, 2018 | Approved | |
Dropbox 63.4.100-beta | 143 | Wednesday, December 12, 2018 | Approved | |
Dropbox 63.3.98-beta | 161 | Friday, December 7, 2018 | Approved | |
Dropbox 63.3.97-beta | 159 | Saturday, December 1, 2018 | Approved | |
Dropbox 63.3.95-beta | 209 | Wednesday, November 28, 2018 | Approved | |
Dropbox 62.4.103 | 7632 | Thursday, November 29, 2018 | Approved | |
Dropbox 62.3.99 | 6926 | Saturday, November 17, 2018 | Approved | |
Dropbox 62.3.99-beta | 171 | Friday, November 16, 2018 | Approved | |
Dropbox 62.3.93 | 3413 | Wednesday, November 14, 2018 | Approved | |
Dropbox 62.3.93-beta | 189 | Wednesday, November 7, 2018 | Approved | |
Dropbox 61.4.95 | 4030 | Wednesday, November 7, 2018 | Approved | |
Dropbox 61.3.92-beta | 232 | Thursday, November 1, 2018 | Approved | |
Dropbox 61.3.90-beta | 242 | Saturday, October 27, 2018 | Approved | |
Dropbox 61.3.87-beta | 191 | Wednesday, October 24, 2018 | Approved | |
Dropbox 60.4.107 | 8135 | Wednesday, October 24, 2018 | Approved | |
Dropbox 60.3.101-beta | 196 | Thursday, October 18, 2018 | Approved | |
Dropbox 60.3.89 | 6295 | Tuesday, October 16, 2018 | Approved | |
Dropbox 60.3.89-beta | 198 | Thursday, October 11, 2018 | Approved | |
Dropbox 59.4.93 | 4701 | Tuesday, October 9, 2018 | Approved | |
Dropbox 59.4.93-beta | 170 | Tuesday, October 9, 2018 | Approved | |
Dropbox 59.3.89-beta | 206 | Wednesday, September 26, 2018 | Approved | |
Dropbox 58.4.92 | 7635 | Tuesday, September 25, 2018 | Approved | |
Dropbox 58.4.92-beta | 165 | Tuesday, September 25, 2018 | Approved | |
Dropbox 58.3.88 | 4774 | Thursday, September 20, 2018 | Approved | |
Dropbox 58.3.88-beta | 183 | Thursday, September 20, 2018 | Approved | |
Dropbox 58.3.87-beta | 169 | Wednesday, September 19, 2018 | Approved | |
Dropbox 58.3.85-beta | 232 | Thursday, September 13, 2018 | Approved | |
Dropbox 57.4.89 | 5723 | Wednesday, September 12, 2018 | Approved | |
Dropbox 57.4.89-beta | 198 | Wednesday, September 12, 2018 | Approved | |
Dropbox 57.3.86-beta | 200 | Friday, August 31, 2018 | Approved | |
Dropbox 57.3.85-beta | 201 | Thursday, August 30, 2018 | Approved | |
Dropbox 57.3.84-beta | 211 | Wednesday, August 29, 2018 | Approved | |
Dropbox 56.4.94 | 6560 | Wednesday, August 29, 2018 | Approved | |
Dropbox 56.4.94-beta | 211 | Wednesday, August 29, 2018 | Approved | |
Dropbox 56.3.90-beta | 246 | Thursday, August 23, 2018 | Approved | |
Dropbox 56.3.89-beta | 163 | Thursday, August 23, 2018 | Approved | |
Dropbox 55.4.171 | 3593 | Thursday, August 23, 2018 | Approved | |
Dropbox 55.3.168-beta | 213 | Tuesday, August 7, 2018 | Approved | |
Dropbox 55.3.167-beta | 215 | Tuesday, July 31, 2018 | Approved | |
Dropbox 54.4.90 | 8158 | Tuesday, July 31, 2018 | Approved | |
Dropbox 54.3.86 | 1894 | Monday, July 30, 2018 | Approved | |
Dropbox 54.3.86-beta | 243 | Friday, July 13, 2018 | Approved | |
Dropbox 54.3.85-beta | 247 | Wednesday, July 11, 2018 | Approved | |
Dropbox 53.4.67 | 6010 | Friday, July 13, 2018 | Approved | |
Dropbox 53.4.66 | 2411 | Wednesday, July 11, 2018 | Approved | |
Dropbox 53.3.65-beta | 248 | Monday, June 25, 2018 | Approved | |
Dropbox 53.3.64-beta | 231 | Tuesday, June 19, 2018 | Approved | |
Dropbox 52.4.60 | 5409 | Tuesday, June 26, 2018 | Approved | |
Dropbox 52.4.58 | 3502 | Tuesday, June 19, 2018 | Approved | |
Dropbox 52.3.56-beta | 236 | Thursday, June 14, 2018 | Approved | |
Dropbox 52.3.55-beta | 231 | Tuesday, June 5, 2018 | Approved | |
Dropbox 51.4.66 | 5723 | Tuesday, June 5, 2018 | Approved | |
Dropbox 51.3.65-beta | 237 | Wednesday, May 23, 2018 | Approved | |
Dropbox 50.4.71 | 5298 | Wednesday, May 23, 2018 | Approved | |
Dropbox 50.3.69-beta | 247 | Thursday, May 17, 2018 | Approved | |
Dropbox 50.3.68-beta | 246 | Wednesday, May 16, 2018 | Approved | |
Dropbox 50.3.67-beta | 231 | Monday, May 14, 2018 | Approved | |
Dropbox 50.3.66 | 4280 | Sunday, May 13, 2018 | Approved | |
Dropbox 50.3.66-beta | 262 | Friday, May 11, 2018 | Approved | |
Dropbox 50.3.65 | 1861 | Friday, May 11, 2018 | Approved | |
Dropbox 50.3.65-beta | 293 | Tuesday, May 8, 2018 | Approved | |
Dropbox 49.4.68 | 2219 | Wednesday, May 9, 2018 | Approved | |
Dropbox 49.3.67-beta | 246 | Saturday, May 5, 2018 | Approved | |
Dropbox 48.4.58 | 5926 | Tuesday, April 24, 2018 | Approved | |
Dropbox 48.4.58-beta | 254 | Tuesday, April 24, 2018 | Approved | |
Dropbox 48.3.57-beta | 262 | Wednesday, April 18, 2018 | Approved | |
Dropbox 48.3.56-beta | 327 | Friday, April 13, 2018 | Approved | |
Dropbox 48.3.55-beta | 281 | Thursday, April 12, 2018 | Approved | |
Dropbox 47.4.74 | 5198 | Wednesday, April 11, 2018 | Approved | |
Dropbox 47.4.74-beta | 260 | Wednesday, April 11, 2018 | Approved | |
Dropbox 47.3.73 | 2084 | Sunday, April 8, 2018 | Approved | |
Dropbox 47.3.73-beta | 289 | Thursday, March 29, 2018 | Approved | |
Dropbox 46.4.65 | 4551 | Thursday, March 29, 2018 | Approved | |
Dropbox 46.3.63-beta | 329 | Wednesday, March 28, 2018 | Approved | |
Dropbox 46.3.60-beta | 315 | Tuesday, March 20, 2018 | Approved | |
Dropbox 46.3.59-beta | 287 | Friday, March 16, 2018 | Approved | |
Dropbox 45.4.92 | 5960 | Friday, March 16, 2018 | Approved | |
Dropbox 44.4.58 | 7170 | Thursday, March 1, 2018 | Approved | |
Dropbox 44.3.56-beta | 353 | Thursday, February 22, 2018 | Approved | |
Dropbox 44.3.52-beta | 348 | Friday, February 9, 2018 | Approved | |
Dropbox 44.3.51-beta | 307 | Wednesday, February 7, 2018 | Approved | |
Dropbox 43.4.50 | 6828 | Friday, February 9, 2018 | Approved | |
Dropbox 43.4.49 | 1863 | Wednesday, February 7, 2018 | Approved | |
Dropbox 43.3.47-beta | 306 | Friday, January 26, 2018 | Approved | |
Dropbox 42.4.114 | 5370 | Wednesday, January 24, 2018 | Approved | |
Dropbox 42.3.113-beta | 281 | Friday, January 19, 2018 | Approved | |
Dropbox 42.3.112-beta | 363 | Wednesday, January 10, 2018 | Approved | |
Dropbox 41.4.80 | 5471 | Friday, January 12, 2018 | Approved | |
Dropbox 41.3.79-beta | 330 | Saturday, January 6, 2018 | Approved | |
Dropbox 41.3.77-beta | 323 | Friday, December 29, 2017 | Approved | |
Dropbox 41.3.76-beta | 332 | Thursday, December 14, 2017 | Approved | |
Dropbox 40.4.46 | 10055 | Wednesday, December 6, 2017 | Approved | |
Dropbox 40.3.44-beta | 370 | Friday, November 17, 2017 | Approved | |
Dropbox 40.3.43-beta | 350 | Thursday, November 16, 2017 | Approved | |
Dropbox 39.4.49 | 6563 | Wednesday, November 15, 2017 | Approved | |
Dropbox 39.3.48-beta | 427 | Monday, November 6, 2017 | Approved | |
Dropbox 39.3.47-beta | 338 | Friday, November 3, 2017 | Approved | |
Dropbox 38.4.27 | 5571 | Wednesday, November 1, 2017 | Approved | |
Dropbox 38.3.23-beta | 344 | Tuesday, October 24, 2017 | Approved | |
Dropbox 38.3.21-beta | 368 | Thursday, October 19, 2017 | Approved | |
Dropbox 37.4.29 | 5167 | Wednesday, October 18, 2017 | Approved | |
Dropbox 37.3.28-beta | 433 | Saturday, October 14, 2017 | Approved | |
Dropbox 37.3.27-beta | 345 | Wednesday, October 11, 2017 | Approved | |
Dropbox 37.3.26-beta | 327 | Monday, October 9, 2017 | Approved | |
Dropbox 37.3.25-beta | 341 | Friday, October 6, 2017 | Approved | |
Dropbox 37.3.22-beta | 361 | Wednesday, October 4, 2017 | Approved | |
Dropbox 36.4.22 | 5010 | Tuesday, October 3, 2017 | Approved | |
Dropbox 36.3.21-beta | 354 | Friday, September 29, 2017 | Exempted | |
Dropbox 36.3.20-beta | 334 | Wednesday, September 27, 2017 | Exempted | |
Dropbox 36.3.19-beta | 334 | Wednesday, September 20, 2017 | Exempted | |
Dropbox 35.4.20 | 1870 | Sunday, October 1, 2017 | Approved | |
Dropbox 35.3.15-beta | 393 | Wednesday, September 13, 2017 | Exempted | |
Dropbox 34.3.19-beta | 394 | Monday, August 28, 2017 | Exempted | |
Dropbox 34.3.18-beta | 349 | Tuesday, August 22, 2017 | Exempted | |
Dropbox 33.3.19-beta | 1366 | Thursday, August 17, 2017 | Exempted | |
Dropbox 33.3.18-beta | 476 | Thursday, August 17, 2017 | Exempted | |
Dropbox 33.3.15-beta | 1360 | Thursday, August 10, 2017 | Exempted | |
Dropbox 33.3.14-beta | 814 | Tuesday, August 8, 2017 | Exempted | |
Dropbox 32.3.20-beta | 556 | Tuesday, August 8, 2017 | Exempted | |
Dropbox 32.3.19-beta | 1238 | Thursday, August 3, 2017 | Exempted | |
Dropbox 31.4.25 | 8703 | Monday, August 7, 2017 | Approved | |
Dropbox 31.3.23-beta | 1622 | Friday, July 28, 2017 | Approved | |
Dropbox 30.4.22 | 8159 | Thursday, July 13, 2017 | Approved | |
Dropbox 29.4.20 | 7337 | Wednesday, June 28, 2017 | Approved | |
Dropbox 28.4.14 | 6197 | Wednesday, June 14, 2017 | Approved | |
Dropbox 27.4.22 | 6731 | Tuesday, May 30, 2017 | Approved | |
Dropbox 26.4.24 | 6270 | Wednesday, May 17, 2017 | Approved | |
Dropbox 26.4.23 | 1938 | Monday, May 15, 2017 | Approved | |
Dropbox 25.4.28 | 4335 | Monday, May 1, 2017 | Approved | |
Dropbox 25.3.26 | 1498 | Saturday, April 29, 2017 | Approved | |
Dropbox 24.4.17 | 1621 | Thursday, April 27, 2017 | Approved | |
Dropbox 16.4.30 | 15631 | Wednesday, December 21, 2016 | Approved | |
Dropbox 16.4.29 | 3381 | Tuesday, December 13, 2016 | Approved | |
Dropbox 15.4.22 | 4524 | Monday, November 28, 2016 | Approved | |
Dropbox 14.4.19 | 6271 | Tuesday, November 8, 2016 | Approved | |
Dropbox 13.4.21 | 5365 | Monday, October 24, 2016 | Approved | |
Dropbox 12.4.22 | 4701 | Monday, October 10, 2016 | Approved | |
Dropbox 8.4.21 | 8709 | Thursday, August 25, 2016 | Approved | |
Dropbox 8.4.19 | 4014 | Tuesday, August 16, 2016 | Approved | |
Dropbox 7.4.30 | 4291 | Tuesday, August 2, 2016 | Approved | |
Dropbox 6.4.14 | 2595 | Sunday, July 17, 2016 | Approved | |
Dropbox 5.4.24 | 391 | Tuesday, June 21, 2016 | Approved | |
Dropbox 4.4.29 | 436 | Tuesday, May 31, 2016 | Approved | |
Dropbox 3.20.1 | 378 | Monday, May 9, 2016 | Approved | |
Dropbox 3.18.1 | 3777 | Friday, April 8, 2016 | Approved | |
Dropbox 3.16.1 | 3886 | Saturday, March 12, 2016 | Approved | |
Dropbox 3.16.0 | 457 | Friday, March 11, 2016 | Approved | |
Dropbox 3.14.7 | 3175 | Friday, February 19, 2016 | Approved | |
Dropbox 3.14.5 | 2100 | Tuesday, February 9, 2016 | Approved | |
Dropbox 3.12.6 | 4626 | Tuesday, December 22, 2015 | Approved | |
Dropbox 3.12.5 | 2230 | Wednesday, December 9, 2015 | Approved | |
Dropbox 3.12.4 | 1316 | Friday, December 4, 2015 | Approved | |
Dropbox 3.10.11 | 3386 | Thursday, November 5, 2015 | Approved | |
Dropbox 3.10.9 | 2145 | Thursday, October 22, 2015 | Approved | |
Dropbox 3.10.8 | 1851 | Tuesday, October 13, 2015 | Approved | |
Dropbox 3.10.7 | 1703 | Monday, October 5, 2015 | Approved | |
Dropbox 3.8.9 | 3612 | Monday, September 14, 2015 | Approved | |
Dropbox 3.8.8 | 4819 | Friday, August 14, 2015 | Approved | |
Dropbox 3.8.6 | 2107 | Wednesday, August 5, 2015 | Approved | |
Dropbox 3.8.5 | 2531 | Friday, July 24, 2015 | Approved | |
Dropbox 3.8.4 | 638 | Thursday, July 23, 2015 | Approved | |
Dropbox 3.6.9 | 2061 | Sunday, July 12, 2015 | Approved | |
Dropbox 3.6.8 | 2026 | Sunday, June 28, 2015 | Approved | |
Dropbox 3.6.7 | 2215 | Thursday, June 11, 2015 | Approved | |
Dropbox 3.6.5 | 1567 | Wednesday, June 3, 2015 | Approved | |
Dropbox 3.6.4 | 1287 | Friday, May 29, 2015 | Approved | |
Dropbox 3.4.6 | 2474 | Wednesday, May 6, 2015 | Approved | |
Dropbox 3.4.4 | 2670 | Tuesday, April 14, 2015 | Approved | |
Dropbox 3.4.3 | 1869 | Friday, April 3, 2015 | Approved | |
Dropbox 3.2.9 | 3095 | Thursday, March 5, 2015 | Approved | |
Dropbox 3.2.7 | 885 | Tuesday, March 3, 2015 | Approved | |
Dropbox 3.2.6 | 2458 | Wednesday, February 11, 2015 | Approved | |
Dropbox 3.2.4 | 544 | Tuesday, February 10, 2015 | Approved | |
Dropbox 3.0.5 | 2132 | Sunday, January 11, 2015 | Approved | |
Dropbox 3.0.4 | 3154 | Thursday, December 18, 2014 | Approved | |
Dropbox 3.0.3 | 428 | Tuesday, December 16, 2014 | Approved | |
Dropbox 2.10.52 | 2651 | Friday, November 14, 2014 | Approved | |
Dropbox 2.10.51 | 459 | Thursday, November 13, 2014 | Approved | |
Dropbox 2.10.50 | 1119 | Tuesday, November 11, 2014 | Approved | |
Dropbox 2.10.49 | 586 | Monday, November 10, 2014 | Approved | |
Dropbox 2.10.46 | 448 | Thursday, November 6, 2014 | Approved | |
Dropbox 2.10.45 | 1380 | Saturday, November 1, 2014 | Approved | |
Dropbox 2.10.44 | 407 | Friday, October 31, 2014 | Approved | |
Dropbox 2.10.43 | 438 | Thursday, October 30, 2014 | Approved | |
Dropbox 2.10.42 | 1223 | Saturday, October 25, 2014 | Approved | |
Dropbox 2.10.41 | 1571 | Saturday, October 11, 2014 | Approved | |
Dropbox 2.10.40 | 539 | Friday, October 10, 2014 | Approved | |
Dropbox 2.10.30.20140918 | 1895 | Thursday, September 18, 2014 | Approved | |
Dropbox 2.10.30 | 650 | Tuesday, September 16, 2014 | Approved | |
Dropbox 2.10.29 | 1850 | Thursday, August 21, 2014 | Approved | |
Dropbox 2.10.28 | 940 | Saturday, August 16, 2014 | Approved | |
Dropbox 2.10.27.20140811 | 833 | Monday, August 11, 2014 | Approved | |
Dropbox 2.10.27 | 1490 | Friday, August 1, 2014 | Approved | |
Dropbox 2.10.3 | 1003 | Wednesday, July 23, 2014 | Approved | |
Dropbox 2.10.2 | 1003 | Tuesday, July 15, 2014 | Approved | |
Dropbox 2.10.1 | 704 | Saturday, July 12, 2014 | Approved | |
Dropbox 2.8.4 | 1423 | Friday, June 20, 2014 | Approved | |
Dropbox 2.8.3 | 1291 | Friday, May 30, 2014 | Approved | |
Dropbox 2.8.2 | 955 | Tuesday, May 20, 2014 | Approved | |
Dropbox 2.8.0 | 720 | Saturday, May 17, 2014 | Approved | |
Dropbox 2.6.33 | 1033 | Thursday, May 8, 2014 | Approved | |
Dropbox 2.6.31 | 1236 | Tuesday, April 22, 2014 | Approved | |
Dropbox 2.6.30 | 678 | Thursday, April 17, 2014 | Approved | |
Dropbox 2.6.29 | 608 | Tuesday, April 15, 2014 | Approved | |
Dropbox 2.6.27 | 714 | Friday, April 11, 2014 | Approved | |
Dropbox 2.6.25 | 1268 | Thursday, March 20, 2014 | Approved | |
Dropbox 2.6.20 | 596 | Tuesday, March 18, 2014 | Approved | |
Dropbox 2.6.18 | 977 | Wednesday, March 5, 2014 | Approved | |
Dropbox 2.6.13 | 925 | Thursday, February 20, 2014 | Approved | |
Dropbox 2.6.12 | 586 | Tuesday, February 18, 2014 | Approved | |
Dropbox 2.6.11 | 605 | Saturday, February 15, 2014 | Approved | |
Dropbox 2.6.10 | 611 | Wednesday, February 12, 2014 | Approved | |
Dropbox 2.6.8 | 594 | Saturday, February 8, 2014 | Approved | |
Dropbox 2.6.7 | 691 | Tuesday, February 4, 2014 | Approved | |
Dropbox 2.6.6 | 645 | Thursday, January 30, 2014 | Approved | |
Dropbox 2.6.5 | 667 | Friday, January 24, 2014 | Approved | |
Dropbox 2.6.2 | 1015 | Tuesday, January 7, 2014 | Approved | |
Dropbox 2.4.11 | 665 | Friday, January 3, 2014 | Approved | |
Dropbox 2.4.10 | 913 | Wednesday, December 18, 2013 | Approved | |
Dropbox 2.4.8 | 913 | Tuesday, November 26, 2013 | Approved | |
Dropbox 2.4.7.20131109 | 840 | Saturday, November 9, 2013 | Approved | |
Dropbox 2.4.6.20131102 | 621 | Saturday, November 2, 2013 | Approved | |
Dropbox 2.4.5.20131030 | 535 | Wednesday, October 30, 2013 | Approved | |
Dropbox 2.4.4 | 676 | Thursday, October 24, 2013 | Approved | |
Dropbox 2.4.3 | 676 | Friday, October 18, 2013 | Approved | |
Dropbox 2.4.2 | 624 | Saturday, October 12, 2013 | Approved | |
Dropbox 2.4.1 | 624 | Saturday, October 5, 2013 | Approved | |
Dropbox 2.4.0 | 607 | Saturday, September 28, 2013 | Approved | |
Dropbox 2.2.13 | 1340 | Monday, August 5, 2013 | Approved | |
Dropbox 2.2.12 | 561 | Wednesday, July 31, 2013 | Approved | |
Dropbox 2.2.10 | 585 | Saturday, July 27, 2013 | Approved | |
Dropbox 2.2.9 | 824 | Wednesday, July 3, 2013 | Approved | |
Dropbox 2.2.8.20130626 | 653 | Wednesday, June 26, 2013 | Approved | |
Dropbox 2.2.8 | 509 | Tuesday, June 25, 2013 | Approved | |
Dropbox 2.2.4 | 601 | Wednesday, June 19, 2013 | Approved | |
Dropbox 2.2.3 | 510 | Tuesday, June 18, 2013 | Approved | |
Dropbox 2.0.26.20130618 | 498 | Tuesday, June 18, 2013 | Approved | |
Dropbox 2.0.26 | 744 | Saturday, June 8, 2013 | Approved | |
Dropbox 1.4.11 | 2540 | Wednesday, July 11, 2012 | Approved | |
Dropbox 1.4.9 | 505 | Tuesday, June 26, 2012 | Approved | |
Dropbox 1.2.52 | 665 | Saturday, February 25, 2012 | Approved | |
Dropbox 1.2.49 | 571 | Wednesday, January 18, 2012 | Approved |
-
- kb2919355 (≥ 1.0.20160915)
Ground Rules:
- This discussion is only about Dropbox and the Dropbox package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Dropbox, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.