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:
173,557
Downloads of v 2018.5.3:
185
Last Update:
24 May 2018
Package Maintainer(s):
Software Author(s):
- Octopus Deploy
Tags:
octopus deploy- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Octopus Deploy - Server
This is not the latest version of Octopus Deploy - Server available.
- 1
- 2
- 3
2018.5.3 | Updated: 24 May 2018
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
173,557
Downloads of v 2018.5.3:
185
Maintainer(s):
Software Author(s):
- Octopus Deploy
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
Octopus Deploy - Server
2018.5.3
This is not the latest version of Octopus Deploy - Server available.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Octopus Deploy - Server, run the following command from the command line or from PowerShell:
To upgrade Octopus Deploy - Server, run the following command from the command line or from PowerShell:
To uninstall Octopus Deploy - Server, 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 octopusdeploy --internalize --version=2018.5.3 --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 octopusdeploy -y --source="'INTERNAL REPO URL'" --version="'2018.5.3'" [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 octopusdeploy -y --source="'INTERNAL REPO URL'" --version="'2018.5.3'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install octopusdeploy
win_chocolatey:
name: octopusdeploy
version: '2018.5.3'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'octopusdeploy' do
action :install
source 'INTERNAL REPO URL'
version '2018.5.3'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller octopusdeploy
{
Name = "octopusdeploy"
Version = "2018.5.3"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'octopusdeploy':
ensure => '2018.5.3',
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 24 May 2018.
Octopus Deploy is a user-friendly automated deployment tool for .NET developers.
This package installs the central Octopus Deploy server.
Install-ChocolateyPackage `
-PackageName 'OctopusDeploy' `
-FileType 'msi' `
-SilentArgs '/quiet' `
-Url 'https://download.octopusdeploy.com/octopus/Octopus.2018.5.3.msi' `
-Url64bit 'https://download.octopusdeploy.com/octopus/Octopus.2018.5.3-x64.msi' `
-Checksum '80C7D38605EB8DD559CEA733DDE4E9B978956436AFE88A274065C282AB2420EF' `
-ChecksumType 'SHA256' `
-Checksum64 'EB78DA389259D424BCF65A8562BB47E2F952D19D732C73329A823883A808448A' `
-ChecksumType64 'SHA256'
Log in or click on link to see number of positives.
- OctopusDeploy.2018.5.3.nupkg (2c322be84685) - ## / 61
- Octopus.2018.5.3-x64.msi (eb78da389259) - ## / 46
- Octopus.2018.5.3.msi (80c7d38605eb) - ## / 52
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 |
---|---|---|---|---|
Octopus Deploy - Server 2022.1.3111 | 19 | Thursday, August 11, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3106 | 13 | Wednesday, August 10, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3096 | 9 | Tuesday, August 9, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3095 | 10 | Monday, August 8, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3092 | 8 | Sunday, August 7, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3090 | 9 | Sunday, August 7, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3084 | 31 | Thursday, August 4, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3082 | 17 | Wednesday, August 3, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3081 | 8 | Wednesday, August 3, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3076 | 21 | Tuesday, August 2, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3074 | 21 | Monday, August 1, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3072 | 23 | Monday, August 1, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3057 | 27 | Wednesday, July 27, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3052 | 32 | Wednesday, July 27, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3040 | 9 | Tuesday, July 26, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3038 | 16 | Monday, July 25, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3036 | 18 | Sunday, July 24, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3034 | 7 | Sunday, July 24, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3029 | 33 | Thursday, July 21, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3028 | 15 | Thursday, July 21, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3024 | 23 | Tuesday, July 19, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3022 | 16 | Tuesday, July 19, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3016 | 13 | Sunday, July 17, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3014 | 9 | Sunday, July 17, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3009 | 42 | Friday, July 15, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3006 | 12 | Thursday, July 14, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.3000 | 30 | Tuesday, July 12, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2997 | 24 | Monday, July 11, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2995 | 12 | Monday, July 11, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2994 | 14 | Monday, July 11, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2990 | 12 | Sunday, July 10, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2974 | 42 | Thursday, July 7, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2931 | 281 | Monday, June 27, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2906 | 86 | Friday, June 24, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2903 | 42 | Wednesday, June 22, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2899 | 36 | Tuesday, June 21, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2896 | 52 | Monday, June 20, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2894 | 11 | Monday, June 20, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2888 | 16 | Monday, June 20, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2885 | 13 | Sunday, June 19, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2879 | 81 | Thursday, June 16, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2875 | 36 | Thursday, June 16, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2871 | 11 | Wednesday, June 15, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2867 | 66 | Tuesday, June 14, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2864 | 20 | Tuesday, June 14, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2863 | 16 | Tuesday, June 14, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2853 | 42 | Monday, June 13, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2851 | 14 | Monday, June 13, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2849 | 12 | Monday, June 13, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2847 | 13 | Sunday, June 12, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2845 | 16 | Sunday, June 12, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2818 | 101 | Thursday, June 9, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2816 | 24 | Thursday, June 9, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2815 | 12 | Thursday, June 9, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2809 | 11 | Wednesday, June 8, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2806 | 33 | Tuesday, June 7, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2803 | 31 | Monday, June 6, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2786 | 33 | Monday, June 6, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2747 | 97 | Wednesday, June 1, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2744 | 37 | Wednesday, June 1, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2739 | 12 | Wednesday, June 1, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2735 | 11 | Wednesday, June 1, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2679 | 42 | Thursday, May 26, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2675 | 13 | Wednesday, May 25, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2669 | 12 | Tuesday, May 24, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2663 | 12 | Sunday, May 22, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2641 | 266 | Thursday, May 19, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2638 | 14 | Thursday, May 19, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2637 | 43 | Thursday, May 19, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2592 | 180 | Wednesday, May 11, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2588 | 16 | Wednesday, May 11, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2584 | 16 | Wednesday, May 11, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2576 | 14 | Tuesday, May 10, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2570 | 67 | Tuesday, May 10, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2567 | 18 | Tuesday, May 10, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2563 | 60 | Monday, May 9, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2557 | 32 | Monday, May 9, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2556 | 18 | Sunday, May 8, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2520 | 142 | Monday, May 2, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2517 | 19 | Monday, May 2, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2504 | 70 | Friday, April 29, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2495 | 15 | Friday, April 29, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2493 | 16 | Thursday, April 28, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2488 | 40 | Thursday, April 28, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2474 | 19 | Thursday, April 28, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2454 | 35 | Wednesday, April 27, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2443 | 29 | Monday, April 25, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2440 | 39 | Sunday, April 24, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2438 | 16 | Sunday, April 24, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2414 | 69 | Friday, April 22, 2022 | Exempted | |
Octopus Deploy - Server 2022.1.2412 | 15 | Thursday, April 21, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.13042 | 8 | Thursday, June 23, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.13039 | 9 | Wednesday, June 22, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.13032 | 11 | Tuesday, June 21, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.13024 | 10 | Monday, June 20, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.13022 | 11 | Monday, June 20, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.13021 | 10 | Monday, June 20, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.13016 | 10 | Sunday, June 19, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.13013 | 14 | Sunday, June 19, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12992 | 10 | Wednesday, June 15, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12988 | 16 | Tuesday, June 14, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12984 | 11 | Tuesday, June 14, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12982 | 11 | Monday, June 13, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12979 | 10 | Sunday, June 12, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12969 | 14 | Friday, June 10, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12967 | 17 | Thursday, June 9, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12961 | 12 | Thursday, June 9, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12957 | 12 | Wednesday, June 8, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12950 | 12 | Tuesday, June 7, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12946 | 14 | Monday, June 6, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12944 | 15 | Monday, June 6, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12930 | 12 | Friday, June 3, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12928 | 16 | Friday, June 3, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12923 | 12 | Wednesday, June 1, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12920 | 10 | Wednesday, June 1, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12918 | 16 | Wednesday, June 1, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12914 | 11 | Tuesday, May 31, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12862 | 15 | Thursday, May 26, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12858 | 16 | Tuesday, May 24, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12856 | 14 | Tuesday, May 24, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12849 | 12 | Tuesday, May 24, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12846 | 14 | Monday, May 23, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12844 | 18 | Sunday, May 22, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12781 | 15 | Wednesday, May 11, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12778 | 19 | Wednesday, May 11, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12776 | 15 | Tuesday, May 10, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12772 | 12 | Monday, May 9, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12769 | 13 | Sunday, May 8, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12768 | 13 | Sunday, May 8, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12742 | 18 | Monday, May 2, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12730 | 13 | Thursday, April 28, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12727 | 11 | Thursday, April 28, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12725 | 16 | Wednesday, April 27, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12717 | 16 | Monday, April 25, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12714 | 15 | Sunday, April 24, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12694 | 15 | Thursday, April 21, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12258 | 1024 | Wednesday, February 16, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12253 | 21 | Wednesday, February 16, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12242 | 29 | Tuesday, February 15, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12239 | 24 | Monday, February 14, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12229 | 247 | Monday, February 14, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12217 | 24 | Friday, February 11, 2022 | Exempted | |
Octopus Deploy - Server 2021.3.12209 | 23 | Thursday, February 10, 2022 | Exempted | |
Octopus Deploy - Server 2021.2.8239 | 14 | Wednesday, May 11, 2022 | Exempted | |
Octopus Deploy - Server 2021.2.8237 | 13 | Monday, May 9, 2022 | Exempted | |
Octopus Deploy - Server 2021.2.8236 | 17 | Sunday, May 8, 2022 | Exempted | |
Octopus Deploy - Server 2021.2.8227 | 15 | Monday, May 2, 2022 | Exempted | |
Octopus Deploy - Server 2021.2.8221 | 17 | Sunday, April 24, 2022 | Exempted | |
Octopus Deploy - Server 2021.2.8219 | 14 | Thursday, April 21, 2022 | Exempted | |
Octopus Deploy - Server 2021.2.8097 | 25 | Sunday, February 20, 2022 | Exempted | |
Octopus Deploy - Server 2021.2.8084 | 27 | Thursday, February 17, 2022 | Exempted | |
Octopus Deploy - Server 2021.2.7697 | 883 | Wednesday, October 20, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.8108 | 12 | Tuesday, May 10, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.8107 | 15 | Monday, May 9, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.8106 | 15 | Sunday, May 8, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.8096 | 14 | Thursday, April 28, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.8095 | 17 | Wednesday, April 27, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.8093 | 16 | Monday, April 25, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.8092 | 17 | Sunday, April 24, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.8089 | 14 | Thursday, April 21, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.8023 | 24 | Sunday, February 20, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.8020 | 25 | Thursday, February 17, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.8019 | 23 | Wednesday, February 16, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.8018 | 22 | Wednesday, February 16, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.8010 | 26 | Thursday, February 10, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.8004 | 27 | Sunday, February 6, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.8003 | 30 | Friday, February 4, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.8002 | 29 | Thursday, February 3, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.7998 | 28 | Wednesday, February 2, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.7987 | 23 | Monday, January 24, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.7986 | 29 | Monday, January 24, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.7984 | 28 | Sunday, January 23, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.7983 | 29 | Sunday, January 23, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.7981 | 32 | Thursday, January 20, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.7980 | 25 | Wednesday, January 19, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.7979 | 31 | Tuesday, January 18, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.7977 | 31 | Sunday, January 16, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.7974 | 25 | Thursday, January 13, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.7973 | 26 | Wednesday, January 12, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.7972 | 21 | Tuesday, January 11, 2022 | Exempted | |
Octopus Deploy - Server 2021.1.7929 | 24 | Sunday, December 19, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7926 | 33 | Thursday, December 16, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7925 | 30 | Wednesday, December 15, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7924 | 34 | Tuesday, December 14, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7923 | 31 | Monday, December 13, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7922 | 29 | Monday, December 13, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7911 | 37 | Tuesday, December 7, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7908 | 27 | Sunday, December 5, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7906 | 30 | Friday, December 3, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7901 | 34 | Thursday, December 2, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7900 | 27 | Wednesday, December 1, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7898 | 27 | Monday, November 29, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7897 | 25 | Sunday, November 28, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7894 | 35 | Thursday, November 25, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7893 | 24 | Wednesday, November 24, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7892 | 28 | Tuesday, November 23, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7891 | 31 | Monday, November 22, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7890 | 33 | Monday, November 22, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7887 | 28 | Thursday, November 18, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7885 | 27 | Wednesday, November 17, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7879 | 27 | Wednesday, November 10, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7877 | 34 | Monday, November 8, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7876 | 32 | Sunday, November 7, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7873 | 28 | Friday, November 5, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7867 | 29 | Tuesday, November 2, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7865 | 25 | Wednesday, October 27, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7861 | 29 | Sunday, October 24, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7858 | 27 | Wednesday, October 20, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7857 | 33 | Tuesday, October 19, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7856 | 28 | Tuesday, October 19, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7855 | 35 | Monday, October 18, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7853 | 49 | Sunday, October 17, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7849 | 41 | Thursday, October 14, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7839 | 59 | Monday, October 11, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7838 | 39 | Sunday, October 10, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7835 | 54 | Thursday, October 7, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7834 | 40 | Wednesday, October 6, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7832 | 45 | Tuesday, October 5, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7831 | 44 | Sunday, October 3, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7828 | 57 | Thursday, September 30, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7827 | 34 | Thursday, September 30, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7826 | 49 | Tuesday, September 28, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7818 | 43 | Sunday, September 26, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7803 | 54 | Wednesday, September 22, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7794 | 68 | Sunday, September 19, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7788 | 82 | Wednesday, September 15, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7787 | 33 | Wednesday, September 15, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7782 | 39 | Tuesday, September 14, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7687 | 192 | Thursday, August 19, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7665 | 83 | Thursday, August 12, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7638 | 35 | Thursday, August 5, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7622 | 77 | Monday, August 2, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7608 | 172 | Thursday, July 29, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7595 | 117 | Thursday, July 22, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7322 | 203 | Wednesday, June 16, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7316 | 153 | Thursday, June 10, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7198 | 205 | Monday, May 24, 2021 | Exempted | |
Octopus Deploy - Server 2021.1.7149 | 83 | Tuesday, May 18, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5197 | 34 | Monday, June 21, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5195 | 38 | Monday, June 21, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5194 | 37 | Monday, June 21, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5189 | 47 | Sunday, June 20, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5170 | 35 | Tuesday, June 15, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5165 | 38 | Tuesday, June 15, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5163 | 44 | Monday, June 14, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5146 | 45 | Thursday, June 10, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5104 | 47 | Tuesday, June 1, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5103 | 50 | Tuesday, June 1, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5097 | 41 | Monday, May 31, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5096 | 46 | Monday, May 31, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5094 | 42 | Sunday, May 30, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5092 | 35 | Sunday, May 30, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5083 | 30 | Friday, May 28, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5070 | 39 | Thursday, May 27, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5064 | 47 | Tuesday, May 25, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5061 | 43 | Monday, May 24, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5060 | 41 | Monday, May 24, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5051 | 49 | Friday, May 21, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5038 | 40 | Wednesday, May 19, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5037 | 46 | Wednesday, May 19, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.5030 | 42 | Monday, May 17, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.4987 | 91 | Tuesday, May 11, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.4974 | 34 | Friday, May 7, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.4923 | 43 | Wednesday, May 5, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.4915 | 183 | Wednesday, April 28, 2021 | Exempted | |
Octopus Deploy - Server 2020.6.4874 | 114 | Wednesday, April 21, 2021 | Approved | |
Octopus Deploy - Server 2020.6.4859 | 52 | Wednesday, April 21, 2021 | Approved | |
Octopus Deploy - Server 2020.6.4855 | 115 | Tuesday, April 13, 2021 | Approved | |
Octopus Deploy - Server 2020.6.4809 | 61 | Monday, April 12, 2021 | Approved | |
Octopus Deploy - Server 2020.6.4788 | 123 | Thursday, April 1, 2021 | Approved | |
Octopus Deploy - Server 2020.6.4701 | 133 | Tuesday, March 16, 2021 | Approved | |
Octopus Deploy - Server 2020.6.4688 | 88 | Tuesday, March 9, 2021 | Approved | |
Octopus Deploy - Server 2020.6.4671 | 114 | Sunday, March 7, 2021 | Approved | |
Octopus Deploy - Server 2020.5.392 | 42 | Monday, May 24, 2021 | Exempted | |
Octopus Deploy - Server 2020.5.391 | 46 | Sunday, May 23, 2021 | Exempted | |
Octopus Deploy - Server 2020.5.390 | 46 | Sunday, May 23, 2021 | Exempted | |
Octopus Deploy - Server 2020.5.388 | 45 | Friday, May 21, 2021 | Exempted | |
Octopus Deploy - Server 2020.5.386 | 40 | Tuesday, May 18, 2021 | Exempted | |
Octopus Deploy - Server 2020.5.385 | 35 | Monday, May 17, 2021 | Exempted | |
Octopus Deploy - Server 2020.5.384 | 41 | Monday, May 17, 2021 | Exempted | |
Octopus Deploy - Server 2020.5.383 | 45 | Sunday, May 16, 2021 | Exempted | |
Octopus Deploy - Server 2020.5.380 | 46 | Wednesday, May 12, 2021 | Exempted | |
Octopus Deploy - Server 2020.5.379 | 52 | Wednesday, May 12, 2021 | Exempted | |
Octopus Deploy - Server 2020.5.369 | 39 | Wednesday, May 5, 2021 | Exempted | |
Octopus Deploy - Server 2020.5.353 | 37 | Friday, April 23, 2021 | Approved | |
Octopus Deploy - Server 2020.5.345 | 50 | Monday, April 19, 2021 | Approved | |
Octopus Deploy - Server 2020.5.343 | 46 | Sunday, April 18, 2021 | Approved | |
Octopus Deploy - Server 2020.5.338 | 47 | Tuesday, April 13, 2021 | Approved | |
Octopus Deploy - Server 2020.5.337 | 46 | Monday, April 12, 2021 | Approved | |
Octopus Deploy - Server 2020.5.334 | 35 | Monday, April 12, 2021 | Approved | |
Octopus Deploy - Server 2020.5.315 | 44 | Thursday, April 1, 2021 | Approved | |
Octopus Deploy - Server 2020.5.312 | 55 | Thursday, April 1, 2021 | Approved | |
Octopus Deploy - Server 2020.5.310 | 47 | Thursday, April 1, 2021 | Approved | |
Octopus Deploy - Server 2020.5.307 | 61 | Friday, March 26, 2021 | Approved | |
Octopus Deploy - Server 2020.5.304 | 54 | Wednesday, March 24, 2021 | Approved | |
Octopus Deploy - Server 2020.5.303 | 68 | Wednesday, March 24, 2021 | Approved | |
Octopus Deploy - Server 2020.5.299 | 66 | Tuesday, March 23, 2021 | Approved | |
Octopus Deploy - Server 2020.5.280 | 53 | Sunday, March 21, 2021 | Approved | |
Octopus Deploy - Server 2020.5.274 | 49 | Tuesday, March 16, 2021 | Approved | |
Octopus Deploy - Server 2020.5.273 | 49 | Tuesday, March 16, 2021 | Approved | |
Octopus Deploy - Server 2020.5.271 | 59 | Tuesday, March 16, 2021 | Approved | |
Octopus Deploy - Server 2020.5.266 | 45 | Wednesday, March 10, 2021 | Approved | |
Octopus Deploy - Server 2020.5.256 | 77 | Thursday, March 4, 2021 | Approved | |
Octopus Deploy - Server 2020.5.249 | 70 | Tuesday, March 2, 2021 | Approved | |
Octopus Deploy - Server 2020.5.239 | 55 | Monday, March 1, 2021 | Approved | |
Octopus Deploy - Server 2020.5.9 | 66 | Thursday, February 25, 2021 | Approved | |
Octopus Deploy - Server 2020.5.8 | 84 | Monday, February 15, 2021 | Approved | |
Octopus Deploy - Server 2020.5.7 | 85 | Wednesday, February 10, 2021 | Approved | |
Octopus Deploy - Server 2020.5.6 | 121 | Thursday, January 28, 2021 | Approved | |
Octopus Deploy - Server 2020.5.5 | 243 | Wednesday, January 6, 2021 | Approved | |
Octopus Deploy - Server 2020.5.4 | 100 | Monday, January 4, 2021 | Approved | |
Octopus Deploy - Server 2020.5.3 | 83 | Sunday, December 20, 2020 | Approved | |
Octopus Deploy - Server 2020.5.2 | 88 | Tuesday, December 15, 2020 | Approved | |
Octopus Deploy - Server 2020.5.1 | 154 | Friday, December 4, 2020 | Approved | |
Octopus Deploy - Server 2020.5.0 | 97 | Monday, November 23, 2020 | Approved | |
Octopus Deploy - Server 2020.5.0-rc0004 | 71 | Monday, November 23, 2020 | Approved | |
Octopus Deploy - Server 2020.5.0-pr7340-0320 | 95 | Wednesday, September 30, 2020 | Approved | |
Octopus Deploy - Server 2020.4.272 | 55 | Wednesday, March 24, 2021 | Approved | |
Octopus Deploy - Server 2020.4.229 | 55 | Thursday, March 4, 2021 | Approved | |
Octopus Deploy - Server 2020.4.226 | 50 | Wednesday, March 3, 2021 | Approved | |
Octopus Deploy - Server 2020.4.225 | 56 | Tuesday, March 2, 2021 | Approved | |
Octopus Deploy - Server 2020.4.222 | 56 | Tuesday, March 2, 2021 | Approved | |
Octopus Deploy - Server 2020.4.14 | 58 | Thursday, February 4, 2021 | Approved | |
Octopus Deploy - Server 2020.4.13 | 62 | Monday, December 21, 2020 | Approved | |
Octopus Deploy - Server 2020.4.12 | 67 | Friday, December 18, 2020 | Approved | |
Octopus Deploy - Server 2020.4.11 | 102 | Wednesday, November 4, 2020 | Approved | |
Octopus Deploy - Server 2020.4.10 | 83 | Thursday, October 29, 2020 | Approved | |
Octopus Deploy - Server 2020.4.9 | 83 | Monday, October 26, 2020 | Approved | |
Octopus Deploy - Server 2020.4.6 | 136 | Thursday, October 15, 2020 | Approved | |
Octopus Deploy - Server 2020.4.5 | 142 | Monday, October 12, 2020 | Approved | |
Octopus Deploy - Server 2020.4.4 | 93 | Sunday, October 11, 2020 | Approved | |
Octopus Deploy - Server 2020.4.3 | 67 | Sunday, October 11, 2020 | Approved | |
Octopus Deploy - Server 2020.4.2 | 169 | Tuesday, September 29, 2020 | Approved | |
Octopus Deploy - Server 2020.4.1 | 81 | Tuesday, September 29, 2020 | Approved | |
Octopus Deploy - Server 2020.4.0 | 162 | Monday, September 21, 2020 | Approved | |
Octopus Deploy - Server 2020.3.10 | 62 | Monday, October 19, 2020 | Approved | |
Octopus Deploy - Server 2020.3.9 | 73 | Monday, October 12, 2020 | Approved | |
Octopus Deploy - Server 2020.3.8 | 66 | Tuesday, October 13, 2020 | Approved | |
Octopus Deploy - Server 2020.3.7 | 70 | Tuesday, September 29, 2020 | Approved | |
Octopus Deploy - Server 2020.3.6 | 101 | Thursday, September 17, 2020 | Approved | |
Octopus Deploy - Server 2020.3.5 | 239 | Wednesday, September 16, 2020 | Approved | |
Octopus Deploy - Server 2020.3.4 | 259 | Monday, August 31, 2020 | Approved | |
Octopus Deploy - Server 2020.3.3 | 158 | Sunday, August 23, 2020 | Approved | |
Octopus Deploy - Server 2020.3.2 | 386 | Tuesday, July 28, 2020 | Approved | |
Octopus Deploy - Server 2020.3.1 | 163 | Monday, July 20, 2020 | Approved | |
Octopus Deploy - Server 2020.2.20 | 83 | Tuesday, September 29, 2020 | Approved | |
Octopus Deploy - Server 2020.2.19 | 87 | Thursday, September 17, 2020 | Approved | |
Octopus Deploy - Server 2020.2.18 | 81 | Sunday, August 23, 2020 | Approved | |
Octopus Deploy - Server 2020.2.17 | 84 | Tuesday, July 28, 2020 | Approved | |
Octopus Deploy - Server 2020.2.16 | 225 | Wednesday, July 1, 2020 | Approved | |
Octopus Deploy - Server 2020.2.15 | 92 | Tuesday, June 30, 2020 | Approved | |
Octopus Deploy - Server 2020.2.14 | 148 | Tuesday, June 23, 2020 | Approved | |
Octopus Deploy - Server 2020.2.13 | 195 | Wednesday, June 10, 2020 | Approved | |
Octopus Deploy - Server 2020.2.12 | 115 | Monday, June 8, 2020 | Approved | |
Octopus Deploy - Server 2020.2.11 | 102 | Thursday, June 4, 2020 | Approved | |
Octopus Deploy - Server 2020.2.10 | 119 | Monday, June 1, 2020 | Approved | |
Octopus Deploy - Server 2020.2.9 | 138 | Wednesday, May 27, 2020 | Approved | |
Octopus Deploy - Server 2020.2.8 | 118 | Monday, May 25, 2020 | Approved | |
Octopus Deploy - Server 2020.2.7 | 100 | Monday, May 25, 2020 | Approved | |
Octopus Deploy - Server 2020.2.6 | 148 | Monday, May 18, 2020 | Approved | |
Octopus Deploy - Server 2020.2.5 | 116 | Friday, May 15, 2020 | Approved | |
Octopus Deploy - Server 2020.2.4 | 93 | Friday, May 15, 2020 | Approved | |
Octopus Deploy - Server 2020.2.3 | 137 | Friday, May 15, 2020 | Approved | |
Octopus Deploy - Server 2020.2.2 | 93 | Friday, May 15, 2020 | Approved | |
Octopus Deploy - Server 2020.2.1 | 100 | Friday, May 15, 2020 | Approved | |
Octopus Deploy - Server 2020.2.0 | 87 | Friday, May 15, 2020 | Approved | |
Octopus Deploy - Server 2020.1.22 | 79 | Sunday, August 23, 2020 | Approved | |
Octopus Deploy - Server 2020.1.21 | 91 | Tuesday, June 23, 2020 | Approved | |
Octopus Deploy - Server 2020.1.20 | 84 | Tuesday, June 9, 2020 | Approved | |
Octopus Deploy - Server 2020.1.19 | 86 | Monday, June 8, 2020 | Approved | |
Octopus Deploy - Server 2020.1.18 | 81 | Thursday, May 21, 2020 | Approved | |
Octopus Deploy - Server 2020.1.17 | 126 | Tuesday, May 12, 2020 | Approved | |
Octopus Deploy - Server 2020.1.16 | 129 | Thursday, May 7, 2020 | Approved | |
Octopus Deploy - Server 2020.1.15 | 209 | Tuesday, April 28, 2020 | Approved | |
Octopus Deploy - Server 2020.1.14 | 136 | Thursday, April 23, 2020 | Approved | |
Octopus Deploy - Server 2020.1.13 | 99 | Tuesday, April 21, 2020 | Approved | |
Octopus Deploy - Server 2020.1.12 | 128 | Thursday, April 16, 2020 | Approved | |
Octopus Deploy - Server 2020.1.11 | 116 | Wednesday, April 15, 2020 | Approved | |
Octopus Deploy - Server 2020.1.10 | 129 | Tuesday, April 7, 2020 | Approved | |
Octopus Deploy - Server 2020.1.9 | 123 | Friday, April 3, 2020 | Approved | |
Octopus Deploy - Server 2020.1.8 | 134 | Tuesday, March 31, 2020 | Approved | |
Octopus Deploy - Server 2020.1.7 | 102 | Tuesday, March 31, 2020 | Approved | |
Octopus Deploy - Server 2020.1.6 | 103 | Tuesday, March 31, 2020 | Approved | |
Octopus Deploy - Server 2020.1.5 | 168 | Thursday, March 19, 2020 | Approved | |
Octopus Deploy - Server 2020.1.4 | 134 | Wednesday, March 18, 2020 | Approved | |
Octopus Deploy - Server 2020.1.3 | 109 | Thursday, March 19, 2020 | Approved | |
Octopus Deploy - Server 2020.1.2 | 109 | Thursday, March 19, 2020 | Approved | |
Octopus Deploy - Server 2020.1.1 | 86 | Wednesday, March 18, 2020 | Approved | |
Octopus Deploy - Server 2020.1.0 | 103 | Wednesday, March 18, 2020 | Approved | |
Octopus Deploy - Server 2019.13.7 | 246 | Thursday, February 20, 2020 | Approved | |
Octopus Deploy - Server 2019.13.6 | 113 | Wednesday, February 19, 2020 | Approved | |
Octopus Deploy - Server 2019.13.5 | 137 | Thursday, February 13, 2020 | Approved | |
Octopus Deploy - Server 2019.13.4 | 116 | Monday, February 10, 2020 | Approved | |
Octopus Deploy - Server 2019.13.3 | 173 | Sunday, February 2, 2020 | Approved | |
Octopus Deploy - Server 2019.13.2 | 135 | Thursday, January 30, 2020 | Approved | |
Octopus Deploy - Server 2019.13.1 | 132 | Wednesday, January 29, 2020 | Approved | |
Octopus Deploy - Server 2019.13.0 | 203 | Tuesday, January 14, 2020 | Approved | |
Octopus Deploy - Server 2019.12.14 | 78 | Tuesday, June 9, 2020 | Approved | |
Octopus Deploy - Server 2019.12.13 | 72 | Tuesday, June 9, 2020 | Approved | |
Octopus Deploy - Server 2019.12.12 | 91 | Thursday, May 7, 2020 | Approved | |
Octopus Deploy - Server 2019.12.11 | 90 | Thursday, April 23, 2020 | Approved | |
Octopus Deploy - Server 2019.12.10 | 110 | Thursday, April 16, 2020 | Approved | |
Octopus Deploy - Server 2019.12.9 | 111 | Wednesday, April 15, 2020 | Approved | |
Octopus Deploy - Server 2019.12.8 | 115 | Saturday, March 14, 2020 | Approved | |
Octopus Deploy - Server 2019.12.7 | 109 | Thursday, March 12, 2020 | Approved | |
Octopus Deploy - Server 2019.12.6 | 107 | Tuesday, March 3, 2020 | Approved | |
Octopus Deploy - Server 2019.12.5 | 81 | Wednesday, February 26, 2020 | Approved | |
Octopus Deploy - Server 2019.12.4 | 103 | Thursday, February 20, 2020 | Approved | |
Octopus Deploy - Server 2019.12.3 | 120 | Tuesday, February 18, 2020 | Approved | |
Octopus Deploy - Server 2019.12.2 | 137 | Wednesday, February 12, 2020 | Approved | |
Octopus Deploy - Server 2019.12.1 | 109 | Thursday, January 30, 2020 | Approved | |
Octopus Deploy - Server 2019.12.0 | 154 | Tuesday, January 14, 2020 | Approved | |
Octopus Deploy - Server 2019.11.3 | 149 | Wednesday, January 8, 2020 | Approved | |
Octopus Deploy - Server 2019.11.2 | 127 | Tuesday, January 7, 2020 | Approved | |
Octopus Deploy - Server 2019.11.1 | 226 | Monday, December 16, 2019 | Approved | |
Octopus Deploy - Server 2019.11.0 | 211 | Thursday, December 12, 2019 | Approved | |
Octopus Deploy - Server 2019.10.12 | 147 | Thursday, December 5, 2019 | Approved | |
Octopus Deploy - Server 2019.10.11 | 114 | Tuesday, December 3, 2019 | Approved | |
Octopus Deploy - Server 2019.10.10 | 249 | Thursday, November 28, 2019 | Approved | |
Octopus Deploy - Server 2019.10.9 | 215 | Monday, November 25, 2019 | Approved | |
Octopus Deploy - Server 2019.10.8 | 238 | Wednesday, November 20, 2019 | Approved | |
Octopus Deploy - Server 2019.10.7 | 190 | Monday, November 18, 2019 | Approved | |
Octopus Deploy - Server 2019.10.6 | 158 | Thursday, November 14, 2019 | Approved | |
Octopus Deploy - Server 2019.10.5 | 273 | Friday, November 8, 2019 | Approved | |
Octopus Deploy - Server 2019.10.4 | 227 | Monday, November 4, 2019 | Approved | |
Octopus Deploy - Server 2019.10.3 | 133 | Monday, November 4, 2019 | Approved | |
Octopus Deploy - Server 2019.10.2 | 337 | Tuesday, October 29, 2019 | Approved | |
Octopus Deploy - Server 2019.10.1 | 495 | Monday, October 21, 2019 | Approved | |
Octopus Deploy - Server 2019.10.0 | 467 | Tuesday, October 15, 2019 | Approved | |
Octopus Deploy - Server 2019.9.15 | 83 | Friday, March 13, 2020 | Approved | |
Octopus Deploy - Server 2019.9.14 | 93 | Tuesday, March 10, 2020 | Approved | |
Octopus Deploy - Server 2019.9.13 | 80 | Thursday, February 20, 2020 | Approved | |
Octopus Deploy - Server 2019.9.12 | 111 | Wednesday, January 8, 2020 | Approved | |
Octopus Deploy - Server 2019.9.11 | 139 | Tuesday, January 7, 2020 | Approved | |
Octopus Deploy - Server 2019.9.10 | 653 | Monday, November 25, 2019 | Approved | |
Octopus Deploy - Server 2019.9.9 | 139 | Thursday, November 21, 2019 | Approved | |
Octopus Deploy - Server 2019.9.8 | 141 | Thursday, November 14, 2019 | Approved | |
Octopus Deploy - Server 2019.9.7 | 107 | Thursday, November 7, 2019 | Approved | |
Octopus Deploy - Server 2019.9.6 | 117 | Tuesday, November 5, 2019 | Approved | |
Octopus Deploy - Server 2019.9.5 | 140 | Monday, November 4, 2019 | Approved | |
Octopus Deploy - Server 2019.9.4 | 124 | Friday, October 25, 2019 | Approved | |
Octopus Deploy - Server 2019.9.3 | 118 | Tuesday, October 15, 2019 | Approved | |
Octopus Deploy - Server 2019.9.2 | 137 | Tuesday, October 15, 2019 | Approved | |
Octopus Deploy - Server 2019.9.1 | 242 | Thursday, October 10, 2019 | Approved | |
Octopus Deploy - Server 2019.9.0 | 125 | Thursday, October 10, 2019 | Approved | |
Octopus Deploy - Server 2019.8.6 | 450 | Wednesday, October 2, 2019 | Approved | |
Octopus Deploy - Server 2019.8.5 | 497 | Monday, September 23, 2019 | Approved | |
Octopus Deploy - Server 2019.8.4 | 275 | Thursday, September 12, 2019 | Approved | |
Octopus Deploy - Server 2019.8.3 | 159 | Monday, September 9, 2019 | Approved | |
Octopus Deploy - Server 2019.8.2 | 159 | Thursday, September 5, 2019 | Approved | |
Octopus Deploy - Server 2019.8.1 | 155 | Thursday, August 29, 2019 | Approved | |
Octopus Deploy - Server 2019.8.0 | 141 | Thursday, August 29, 2019 | Approved | |
Octopus Deploy - Server 2019.7.13 | 111 | Monday, August 26, 2019 | Approved | |
Octopus Deploy - Server 2019.7.12 | 133 | Tuesday, August 20, 2019 | Approved | |
Octopus Deploy - Server 2019.7.11 | 132 | Tuesday, August 20, 2019 | Approved | |
Octopus Deploy - Server 2019.7.10 | 132 | Monday, August 19, 2019 | Approved | |
Octopus Deploy - Server 2019.7.9 | 138 | Monday, August 19, 2019 | Approved | |
Octopus Deploy - Server 2019.7.8 | 126 | Monday, August 19, 2019 | Approved | |
Octopus Deploy - Server 2019.6.15 | 86 | Friday, December 20, 2019 | Approved | |
Octopus Deploy - Server 2019.6.14 | 112 | Thursday, November 14, 2019 | Approved | |
Octopus Deploy - Server 2019.6.13 | 130 | Thursday, November 7, 2019 | Approved | |
Octopus Deploy - Server 2019.6.12 | 109 | Tuesday, November 5, 2019 | Approved | |
Octopus Deploy - Server 2019.6.11 | 143 | Monday, November 4, 2019 | Approved | |
Octopus Deploy - Server 2019.6.10 | 111 | Friday, October 25, 2019 | Approved | |
Octopus Deploy - Server 2019.6.9 | 118 | Thursday, October 10, 2019 | Approved | |
Octopus Deploy - Server 2019.6.8 | 113 | Wednesday, August 28, 2019 | Approved | |
Octopus Deploy - Server 2019.6.1 | 141 | Monday, August 19, 2019 | Approved | |
Octopus Deploy - Server 2019.5.12 | 934 | Wednesday, June 26, 2019 | Approved | |
Octopus Deploy - Server 2019.5.10 | 181 | Thursday, June 13, 2019 | Approved | |
Octopus Deploy - Server 2019.5.9 | 131 | Wednesday, June 12, 2019 | Approved | |
Octopus Deploy - Server 2019.5.8 | 160 | Monday, June 10, 2019 | Approved | |
Octopus Deploy - Server 2019.5.7 | 144 | Monday, June 3, 2019 | Approved | |
Octopus Deploy - Server 2019.5.6 | 138 | Tuesday, May 28, 2019 | Approved | |
Octopus Deploy - Server 2019.5.5 | 131 | Monday, May 27, 2019 | Approved | |
Octopus Deploy - Server 2019.5.4 | 168 | Monday, May 20, 2019 | Approved | |
Octopus Deploy - Server 2019.5.3 | 136 | Thursday, May 16, 2019 | Approved | |
Octopus Deploy - Server 2019.5.2 | 125 | Wednesday, May 15, 2019 | Approved | |
Octopus Deploy - Server 2019.5.1 | 105 | Tuesday, May 14, 2019 | Approved | |
Octopus Deploy - Server 2019.5.0 | 138 | Thursday, May 9, 2019 | Approved | |
Octopus Deploy - Server 2019.4.7 | 143 | Thursday, May 2, 2019 | Approved | |
Octopus Deploy - Server 2019.4.6 | 109 | Wednesday, May 1, 2019 | Approved | |
Octopus Deploy - Server 2019.4.5 | 154 | Monday, April 29, 2019 | Approved | |
Octopus Deploy - Server 2019.4.4 | 157 | Thursday, April 18, 2019 | Approved | |
Octopus Deploy - Server 2019.4.3 | 136 | Tuesday, April 16, 2019 | Approved | |
Octopus Deploy - Server 2019.4.2 | 145 | Wednesday, April 10, 2019 | Approved | |
Octopus Deploy - Server 2019.4.1 | 112 | Tuesday, April 9, 2019 | Approved | |
Octopus Deploy - Server 2019.3.8 | 124 | Tuesday, August 6, 2019 | Approved | |
Octopus Deploy - Server 2019.3.7 | 128 | Thursday, July 25, 2019 | Approved | |
Octopus Deploy - Server 2019.3.6 | 121 | Monday, July 22, 2019 | Approved | |
Octopus Deploy - Server 2019.3.5 | 134 | Wednesday, June 12, 2019 | Approved | |
Octopus Deploy - Server 2019.3.3 | 144 | Thursday, May 2, 2019 | Approved | |
Octopus Deploy - Server 2019.3.2 | 132 | Tuesday, April 30, 2019 | Approved | |
Octopus Deploy - Server 2019.3.1 | 135 | Tuesday, April 9, 2019 | Approved | |
Octopus Deploy - Server 2019.3.0 | 210 | Tuesday, April 2, 2019 | Approved | |
Octopus Deploy - Server 2019.2.8 | 118 | Monday, April 1, 2019 | Approved | |
Octopus Deploy - Server 2019.2.7 | 157 | Thursday, March 28, 2019 | Approved | |
Octopus Deploy - Server 2019.2.6 | 145 | Thursday, March 21, 2019 | Approved | |
Octopus Deploy - Server 2019.2.5 | 153 | Wednesday, March 20, 2019 | Approved | |
Octopus Deploy - Server 2019.2.4 | 180 | Monday, March 18, 2019 | Approved | |
Octopus Deploy - Server 2019.2.3 | 153 | Tuesday, March 12, 2019 | Approved | |
Octopus Deploy - Server 2019.2.2 | 186 | Wednesday, March 6, 2019 | Approved | |
Octopus Deploy - Server 2019.2.1 | 182 | Friday, March 1, 2019 | Approved | |
Octopus Deploy - Server 2019.2.0 | 137 | Thursday, February 28, 2019 | Approved | |
Octopus Deploy - Server 2019.1.11 | 110 | Tuesday, February 26, 2019 | Approved | |
Octopus Deploy - Server 2019.1.10 | 133 | Monday, February 25, 2019 | Approved | |
Octopus Deploy - Server 2019.1.9 | 154 | Wednesday, February 20, 2019 | Approved | |
Octopus Deploy - Server 2019.1.8 | 172 | Tuesday, February 19, 2019 | Approved | |
Octopus Deploy - Server 2019.1.7 | 170 | Monday, February 18, 2019 | Approved | |
Octopus Deploy - Server 2019.1.6 | 153 | Wednesday, February 13, 2019 | Approved | |
Octopus Deploy - Server 2019.1.5 | 167 | Thursday, February 7, 2019 | Approved | |
Octopus Deploy - Server 2019.1.4 | 145 | Tuesday, February 5, 2019 | Approved | |
Octopus Deploy - Server 2019.1.3 | 138 | Monday, February 4, 2019 | Approved | |
Octopus Deploy - Server 2019.1.2 | 180 | Thursday, January 31, 2019 | Approved | |
Octopus Deploy - Server 2019.1.1 | 191 | Wednesday, January 30, 2019 | Approved | |
Octopus Deploy - Server 2019.1.0 | 191 | Monday, January 28, 2019 | Approved | |
Octopus Deploy - Server 2018.12.1 | 163 | Thursday, January 24, 2019 | Approved | |
Octopus Deploy - Server 2018.12.0 | 247 | Monday, January 21, 2019 | Approved | |
Octopus Deploy - Server 2018.11.3 | 160 | Thursday, January 17, 2019 | Approved | |
Octopus Deploy - Server 2018.11.2 | 147 | Monday, January 14, 2019 | Approved | |
Octopus Deploy - Server 2018.11.1 | 207 | Friday, January 4, 2019 | Approved | |
Octopus Deploy - Server 2018.11.0 | 170 | Thursday, January 3, 2019 | Approved | |
Octopus Deploy - Server 2018.10.9 | 95 | Wednesday, August 7, 2019 | Approved | |
Octopus Deploy - Server 2018.10.8 | 107 | Monday, August 5, 2019 | Approved | |
Octopus Deploy - Server 2018.10.7 | 110 | Wednesday, May 1, 2019 | Approved | |
Octopus Deploy - Server 2018.10.6 | 112 | Monday, April 8, 2019 | Approved | |
Octopus Deploy - Server 2018.10.5 | 114 | Tuesday, February 26, 2019 | Approved | |
Octopus Deploy - Server 2018.10.4 | 120 | Tuesday, February 19, 2019 | Approved | |
Octopus Deploy - Server 2018.10.3 | 104 | Sunday, February 17, 2019 | Approved | |
Octopus Deploy - Server 2018.10.2 | 125 | Thursday, January 31, 2019 | Approved | |
Octopus Deploy - Server 2018.10.1 | 179 | Thursday, January 24, 2019 | Approved | |
Octopus Deploy - Server 2018.10.0 | 150 | Wednesday, December 19, 2018 | Approved | |
Octopus Deploy - Server 2018.9.17 | 218 | Monday, December 17, 2018 | Approved | |
Octopus Deploy - Server 2018.9.16 | 152 | Wednesday, December 12, 2018 | Approved | |
Octopus Deploy - Server 2018.9.15 | 170 | Thursday, December 6, 2018 | Approved | |
Octopus Deploy - Server 2018.9.14 | 148 | Tuesday, December 4, 2018 | Approved | |
Octopus Deploy - Server 2018.9.13 | 139 | Monday, December 3, 2018 | Approved | |
Octopus Deploy - Server 2018.9.12 | 196 | Monday, November 26, 2018 | Approved | |
Octopus Deploy - Server 2018.9.11 | 197 | Wednesday, November 21, 2018 | Approved | |
Octopus Deploy - Server 2018.9.10 | 151 | Sunday, November 18, 2018 | Approved | |
Octopus Deploy - Server 2018.9.9 | 183 | Wednesday, November 14, 2018 | Approved | |
Octopus Deploy - Server 2018.9.7 | 172 | Monday, November 12, 2018 | Approved | |
Octopus Deploy - Server 2018.9.6 | 160 | Thursday, November 8, 2018 | Approved | |
Octopus Deploy - Server 2018.9.5 | 165 | Tuesday, November 6, 2018 | Approved | |
Octopus Deploy - Server 2018.9.4 | 161 | Monday, November 5, 2018 | Approved | |
Octopus Deploy - Server 2018.9.3 | 195 | Friday, November 2, 2018 | Approved | |
Octopus Deploy - Server 2018.9.1 | 198 | Tuesday, October 30, 2018 | Approved | |
Octopus Deploy - Server 2018.9.0 | 208 | Thursday, October 25, 2018 | Approved | |
Octopus Deploy - Server 2018.8.12 | 188 | Monday, October 22, 2018 | Approved | |
Octopus Deploy - Server 2018.8.11 | 172 | Thursday, October 18, 2018 | Approved | |
Octopus Deploy - Server 2018.8.10 | 180 | Wednesday, October 17, 2018 | Approved | |
Octopus Deploy - Server 2018.8.9 | 171 | Tuesday, October 16, 2018 | Approved | |
Octopus Deploy - Server 2018.8.8 | 204 | Thursday, October 4, 2018 | Approved | |
Octopus Deploy - Server 2018.8.7 | 173 | Tuesday, October 2, 2018 | Approved | |
Octopus Deploy - Server 2018.8.6 | 184 | Monday, September 24, 2018 | Approved | |
Octopus Deploy - Server 2018.8.5 | 158 | Monday, September 17, 2018 | Approved | |
Octopus Deploy - Server 2018.8.4 | 228 | Wednesday, September 12, 2018 | Approved | |
Octopus Deploy - Server 2018.8.3 | 155 | Monday, September 10, 2018 | Approved | |
Octopus Deploy - Server 2018.8.2 | 210 | Wednesday, September 5, 2018 | Approved | |
Octopus Deploy - Server 2018.8.1 | 189 | Tuesday, September 4, 2018 | Approved | |
Octopus Deploy - Server 2018.8.0 | 148 | Monday, September 3, 2018 | Approved | |
Octopus Deploy - Server 2018.7.14 | 190 | Monday, August 27, 2018 | Approved | |
Octopus Deploy - Server 2018.7.13 | 205 | Tuesday, August 21, 2018 | Approved | |
Octopus Deploy - Server 2018.7.12 | 233 | Monday, August 20, 2018 | Approved | |
Octopus Deploy - Server 2018.7.11 | 184 | Wednesday, August 15, 2018 | Approved | |
Octopus Deploy - Server 2018.7.10 | 177 | Tuesday, August 14, 2018 | Approved | |
Octopus Deploy - Server 2018.7.9 | 182 | Monday, August 13, 2018 | Approved | |
Octopus Deploy - Server 2018.7.8 | 182 | Wednesday, August 8, 2018 | Approved | |
Octopus Deploy - Server 2018.7.7 | 206 | Wednesday, August 1, 2018 | Approved | |
Octopus Deploy - Server 2018.7.6 | 169 | Tuesday, July 31, 2018 | Approved | |
Octopus Deploy - Server 2018.7.5 | 199 | Monday, July 30, 2018 | Approved | |
Octopus Deploy - Server 2018.7.4 | 219 | Wednesday, July 25, 2018 | Approved | |
Octopus Deploy - Server 2018.7.3 | 203 | Monday, July 23, 2018 | Approved | |
Octopus Deploy - Server 2018.7.2 | 212 | Monday, July 23, 2018 | Approved | |
Octopus Deploy - Server 2018.7.1 | 210 | Thursday, July 19, 2018 | Approved | |
Octopus Deploy - Server 2018.7.0 | 214 | Wednesday, July 18, 2018 | Approved | |
Octopus Deploy - Server 2018.6.15 | 227 | Wednesday, July 11, 2018 | Approved | |
Octopus Deploy - Server 2018.6.14 | 203 | Monday, July 9, 2018 | Approved | |
Octopus Deploy - Server 2018.6.13 | 215 | Thursday, July 5, 2018 | Approved | |
Octopus Deploy - Server 2018.6.12 | 192 | Tuesday, July 3, 2018 | Approved | |
Octopus Deploy - Server 2018.6.11 | 196 | Monday, July 2, 2018 | Approved | |
Octopus Deploy - Server 2018.6.10 | 205 | Friday, June 29, 2018 | Approved | |
Octopus Deploy - Server 2018.6.9 | 219 | Thursday, June 28, 2018 | Approved | |
Octopus Deploy - Server 2018.6.8 | 215 | Wednesday, June 27, 2018 | Approved | |
Octopus Deploy - Server 2018.6.7 | 182 | Tuesday, June 26, 2018 | Approved | |
Octopus Deploy - Server 2018.6.6 | 185 | Monday, June 25, 2018 | Approved | |
Octopus Deploy - Server 2018.6.5 | 254 | Wednesday, June 20, 2018 | Approved | |
Octopus Deploy - Server 2018.6.4 | 204 | Tuesday, June 19, 2018 | Approved | |
Octopus Deploy - Server 2018.6.3 | 209 | Monday, June 18, 2018 | Approved | |
Octopus Deploy - Server 2018.6.2 | 174 | Thursday, June 14, 2018 | Approved | |
Octopus Deploy - Server 2018.6.1 | 184 | Tuesday, June 12, 2018 | Approved | |
Octopus Deploy - Server 2018.6.0 | 215 | Friday, June 8, 2018 | Approved | |
Octopus Deploy - Server 2018.5.7 | 214 | Monday, June 4, 2018 | Approved | |
Octopus Deploy - Server 2018.5.6 | 214 | Wednesday, May 30, 2018 | Approved | |
Octopus Deploy - Server 2018.5.4 | 201 | Sunday, May 27, 2018 | Approved | |
Octopus Deploy - Server 2018.5.3 | 185 | Thursday, May 24, 2018 | Approved | |
Octopus Deploy - Server 2018.5.2 | 200 | Tuesday, May 22, 2018 | Approved | |
Octopus Deploy - Server 2018.5.1 | 215 | Tuesday, May 15, 2018 | Approved | |
Octopus Deploy - Server 2018.5.0 | 182 | Sunday, May 13, 2018 | Approved | |
Octopus Deploy - Server 2018.4.12 | 254 | Wednesday, May 9, 2018 | Approved | |
Octopus Deploy - Server 2018.4.11 | 226 | Tuesday, May 8, 2018 | Approved | |
Octopus Deploy - Server 2018.4.10 | 229 | Wednesday, May 2, 2018 | Approved | |
Octopus Deploy - Server 2018.4.9 | 200 | Tuesday, May 1, 2018 | Approved | |
Octopus Deploy - Server 2018.4.8 | 178 | Tuesday, May 1, 2018 | Approved | |
Octopus Deploy - Server 2018.4.7 | 199 | Monday, April 30, 2018 | Approved | |
Octopus Deploy - Server 2018.4.6 | 207 | Thursday, April 26, 2018 | Approved | |
Octopus Deploy - Server 2018.4.5 | 185 | Thursday, April 26, 2018 | Approved | |
Octopus Deploy - Server 2018.4.4 | 216 | Monday, April 23, 2018 | Approved | |
Octopus Deploy - Server 2018.4.3 | 248 | Friday, April 20, 2018 | Approved | |
Octopus Deploy - Server 2018.4.2 | 218 | Thursday, April 19, 2018 | Approved | |
Octopus Deploy - Server 2018.4.1 | 242 | Wednesday, April 18, 2018 | Approved | |
Octopus Deploy - Server 2018.4.0 | 209 | Monday, April 16, 2018 | Approved | |
Octopus Deploy - Server 2018.3.13 | 257 | Wednesday, April 11, 2018 | Approved | |
Octopus Deploy - Server 2018.3.12 | 216 | Tuesday, April 10, 2018 | Approved | |
Octopus Deploy - Server 2018.3.11 | 239 | Friday, April 6, 2018 | Approved | |
Octopus Deploy - Server 2018.3.10 | 249 | Thursday, April 5, 2018 | Approved | |
Octopus Deploy - Server 2018.3.9 | 235 | Tuesday, April 3, 2018 | Approved | |
Octopus Deploy - Server 2018.3.8 | 264 | Wednesday, March 28, 2018 | Approved | |
Octopus Deploy - Server 2018.3.7 | 293 | Monday, March 26, 2018 | Approved | |
Octopus Deploy - Server 2018.3.6 | 264 | Wednesday, March 21, 2018 | Approved | |
Octopus Deploy - Server 2018.3.5 | 237 | Tuesday, March 20, 2018 | Approved | |
Octopus Deploy - Server 2018.3.4 | 298 | Wednesday, March 14, 2018 | Approved | |
Octopus Deploy - Server 2018.3.3 | 261 | Monday, March 12, 2018 | Approved | |
Octopus Deploy - Server 2018.3.2 | 252 | Friday, March 9, 2018 | Approved | |
Octopus Deploy - Server 2018.3.1 | 260 | Thursday, March 8, 2018 | Approved | |
Octopus Deploy - Server 2018.3.0 | 253 | Wednesday, March 7, 2018 | Approved | |
Octopus Deploy - Server 2018.2.8 | 291 | Thursday, March 1, 2018 | Approved | |
Octopus Deploy - Server 2018.2.7 | 252 | Wednesday, February 28, 2018 | Approved | |
Octopus Deploy - Server 2018.2.6 | 287 | Thursday, February 22, 2018 | Approved | |
Octopus Deploy - Server 2018.2.5 | 283 | Monday, February 19, 2018 | Approved | |
Octopus Deploy - Server 2018.2.4 | 232 | Monday, February 19, 2018 | Approved | |
Octopus Deploy - Server 2018.2.3 | 303 | Wednesday, February 14, 2018 | Approved | |
Octopus Deploy - Server 2018.2.2 | 260 | Tuesday, February 13, 2018 | Approved | |
Octopus Deploy - Server 2018.2.1 | 267 | Thursday, February 8, 2018 | Approved | |
Octopus Deploy - Server 2018.2.0 | 232 | Thursday, February 8, 2018 | Approved | |
Octopus Deploy - Server 2018.1.5 | 239 | Wednesday, February 7, 2018 | Approved | |
Octopus Deploy - Server 2018.1.4 | 275 | Monday, February 5, 2018 | Approved | |
Octopus Deploy - Server 2018.1.3 | 246 | Thursday, February 1, 2018 | Approved | |
Octopus Deploy - Server 2018.1.2 | 264 | Monday, January 29, 2018 | Approved | |
Octopus Deploy - Server 2018.1.1 | 256 | Thursday, January 25, 2018 | Approved | |
Octopus Deploy - Server 2018.1.0 | 266 | Wednesday, January 24, 2018 | Approved | |
Octopus Deploy - Server 4.1.10 | 281 | Tuesday, January 23, 2018 | Approved | |
Octopus Deploy - Server 4.1.9 | 338 | Tuesday, January 16, 2018 | Approved | |
Octopus Deploy - Server 4.1.8 | 337 | Wednesday, January 10, 2018 | Approved | |
Octopus Deploy - Server 4.1.7 | 339 | Thursday, January 4, 2018 | Approved | |
Octopus Deploy - Server 4.1.6 | 266 | Wednesday, January 3, 2018 | Approved | |
Octopus Deploy - Server 4.1.5 | 348 | Wednesday, December 20, 2017 | Approved | |
Octopus Deploy - Server 4.1.4 | 292 | Monday, December 18, 2017 | Approved | |
Octopus Deploy - Server 4.1.3 | 312 | Wednesday, December 13, 2017 | Approved | |
Octopus Deploy - Server 4.1.2 | 262 | Tuesday, December 12, 2017 | Approved | |
Octopus Deploy - Server 4.1.1 | 320 | Thursday, December 7, 2017 | Approved | |
Octopus Deploy - Server 4.1.0 | 300 | Tuesday, December 5, 2017 | Approved | |
Octopus Deploy - Server 4.0.11 | 257 | Monday, December 4, 2017 | Approved | |
Octopus Deploy - Server 4.0.10 | 282 | Thursday, November 30, 2017 | Approved | |
Octopus Deploy - Server 4.0.9 | 293 | Wednesday, November 29, 2017 | Approved | |
Octopus Deploy - Server 4.0.8 | 293 | Tuesday, November 28, 2017 | Approved | |
Octopus Deploy - Server 4.0.7 | 262 | Monday, November 27, 2017 | Approved | |
Octopus Deploy - Server 4.0.6 | 309 | Thursday, November 23, 2017 | Approved | |
Octopus Deploy - Server 4.0.5 | 271 | Wednesday, November 22, 2017 | Approved | |
Octopus Deploy - Server 4.0.4 | 268 | Tuesday, November 21, 2017 | Approved | |
Octopus Deploy - Server 4.0.3 | 300 | Friday, November 17, 2017 | Approved | |
Octopus Deploy - Server 4.0.2 | 299 | Thursday, November 16, 2017 | Approved | |
Octopus Deploy - Server 4.0.1 | 286 | Wednesday, November 15, 2017 | Approved | |
Octopus Deploy - Server 4.0.0 | 248 | Tuesday, November 14, 2017 | Approved | |
Octopus Deploy - Server 3.17.14 | 579 | Monday, November 13, 2017 | Approved | |
Octopus Deploy - Server 3.17.13 | 302 | Wednesday, November 8, 2017 | Approved | |
Octopus Deploy - Server 3.17.12 | 331 | Thursday, November 2, 2017 | Approved | |
Octopus Deploy - Server 3.17.11 | 297 | Tuesday, October 31, 2017 | Approved | |
Octopus Deploy - Server 3.17.10 | 303 | Thursday, October 26, 2017 | Approved | |
Octopus Deploy - Server 3.17.9 | 277 | Monday, October 23, 2017 | Approved | |
Octopus Deploy - Server 3.17.8 | 295 | Thursday, October 19, 2017 | Approved | |
Octopus Deploy - Server 3.17.7 | 302 | Wednesday, October 18, 2017 | Approved | |
Octopus Deploy - Server 3.17.6 | 269 | Monday, October 16, 2017 | Approved | |
Octopus Deploy - Server 3.17.5 | 351 | Thursday, October 5, 2017 | Approved | |
Octopus Deploy - Server 3.17.4 | 297 | Wednesday, October 4, 2017 | Approved | |
Octopus Deploy - Server 3.17.3 | 314 | Tuesday, October 3, 2017 | Approved | |
Octopus Deploy - Server 3.17.2 | 314 | Thursday, September 21, 2017 | Approved | |
Octopus Deploy - Server 3.17.1 | 337 | Thursday, September 14, 2017 | Approved | |
Octopus Deploy - Server 3.17.0 | 358 | Monday, September 11, 2017 | Approved | |
Octopus Deploy - Server 3.16.7 | 509 | Friday, September 1, 2017 | Approved | |
Octopus Deploy - Server 3.16.6 | 326 | Thursday, August 31, 2017 | Approved | |
Octopus Deploy - Server 3.16.5 | 313 | Tuesday, August 29, 2017 | Approved | |
Octopus Deploy - Server 3.16.4 | 310 | Friday, August 25, 2017 | Approved | |
Octopus Deploy - Server 3.16.3 | 333 | Wednesday, August 23, 2017 | Approved | |
Octopus Deploy - Server 3.16.2 | 347 | Thursday, August 10, 2017 | Approved | |
Octopus Deploy - Server 3.16.1 | 331 | Tuesday, August 8, 2017 | Approved | |
Octopus Deploy - Server 3.16.0 | 341 | Wednesday, August 2, 2017 | Approved | |
Octopus Deploy - Server 3.15.8 | 417 | Monday, July 24, 2017 | Approved | |
Octopus Deploy - Server 3.15.7 | 291 | Wednesday, July 19, 2017 | Approved | |
Octopus Deploy - Server 3.15.6 | 343 | Monday, July 17, 2017 | Approved | |
Octopus Deploy - Server 3.15.5 | 306 | Thursday, July 13, 2017 | Approved | |
Octopus Deploy - Server 3.15.4 | 314 | Tuesday, July 11, 2017 | Approved | |
Octopus Deploy - Server 3.15.3 | 325 | Monday, July 10, 2017 | Approved | |
Octopus Deploy - Server 3.15.2 | 308 | Friday, July 7, 2017 | Approved | |
Octopus Deploy - Server 3.15.1 | 336 | Thursday, July 6, 2017 | Approved | |
Octopus Deploy - Server 3.15.0 | 346 | Tuesday, July 4, 2017 | Approved | |
Octopus Deploy - Server 3.14.15926 | 329 | Friday, June 30, 2017 | Approved | |
Octopus Deploy - Server 3.14.1592 | 307 | Wednesday, June 28, 2017 | Approved | |
Octopus Deploy - Server 3.14.159 | 305 | Tuesday, June 27, 2017 | Approved | |
Octopus Deploy - Server 3.14.15 | 304 | Wednesday, June 21, 2017 | Approved | |
Octopus Deploy - Server 3.14.1 | 391 | Monday, June 12, 2017 | Approved | |
Octopus Deploy - Server 3.13.10 | 287 | Wednesday, June 7, 2017 | Approved | |
Octopus Deploy - Server 3.13.9 | 395 | Thursday, June 1, 2017 | Approved | |
Octopus Deploy - Server 3.13.8 | 354 | Monday, May 29, 2017 | Approved | |
Octopus Deploy - Server 3.13.7 | 340 | Monday, May 22, 2017 | Approved | |
Octopus Deploy - Server 3.13.6 | 355 | Thursday, May 18, 2017 | Approved | |
Octopus Deploy - Server 3.13.5 | 308 | Wednesday, May 17, 2017 | Approved | |
Octopus Deploy - Server 3.13.4 | 281 | Tuesday, May 16, 2017 | Approved | |
Octopus Deploy - Server 3.13.3 | 362 | Thursday, May 11, 2017 | Approved | |
Octopus Deploy - Server 3.13.2 | 325 | Tuesday, May 9, 2017 | Approved | |
Octopus Deploy - Server 3.13.1 | 341 | Monday, May 8, 2017 | Approved | |
Octopus Deploy - Server 3.13.0 | 323 | Wednesday, May 3, 2017 | Approved | |
Octopus Deploy - Server 3.12.9 | 305 | Tuesday, May 2, 2017 | Approved | |
Octopus Deploy - Server 3.12.8 | 300 | Thursday, April 27, 2017 | Approved | |
Octopus Deploy - Server 3.12.7 | 291 | Wednesday, April 26, 2017 | Approved | |
Octopus Deploy - Server 3.12.6 | 310 | Thursday, April 20, 2017 | Approved | |
Octopus Deploy - Server 3.12.5 | 328 | Monday, April 17, 2017 | Approved | |
Octopus Deploy - Server 3.12.4 | 357 | Tuesday, April 11, 2017 | Approved | |
Octopus Deploy - Server 3.12.3 | 298 | Tuesday, April 11, 2017 | Approved | |
Octopus Deploy - Server 3.12.2 | 320 | Monday, April 10, 2017 | Approved | |
Octopus Deploy - Server 3.12.1 | 293 | Friday, April 7, 2017 | Approved | |
Octopus Deploy - Server 3.12.0 | 360 | Tuesday, April 4, 2017 | Approved | |
Octopus Deploy - Server 3.11.18 | 294 | Monday, April 3, 2017 | Approved | |
Octopus Deploy - Server 3.11.17 | 313 | Monday, April 3, 2017 | Approved | |
Octopus Deploy - Server 3.11.16 | 333 | Wednesday, March 29, 2017 | Approved | |
Octopus Deploy - Server 3.11.15 | 326 | Monday, March 27, 2017 | Approved | |
Octopus Deploy - Server 3.11.14 | 280 | Thursday, March 23, 2017 | Approved | |
Octopus Deploy - Server 3.11.13 | 324 | Tuesday, March 21, 2017 | Approved | |
Octopus Deploy - Server 3.11.12 | 294 | Monday, March 20, 2017 | Approved | |
Octopus Deploy - Server 3.11.11 | 308 | Wednesday, March 15, 2017 | Approved | |
Octopus Deploy - Server 3.11.10 | 286 | Monday, March 13, 2017 | Approved | |
Octopus Deploy - Server 3.11.9 | 305 | Thursday, March 9, 2017 | Approved | |
Octopus Deploy - Server 3.11.8 | 339 | Thursday, March 9, 2017 | Approved | |
Octopus Deploy - Server 3.11.7 | 288 | Tuesday, March 7, 2017 | Approved | |
Octopus Deploy - Server 3.11.6 | 304 | Monday, March 6, 2017 | Approved | |
Octopus Deploy - Server 3.11.5 | 333 | Friday, March 3, 2017 | Approved | |
Octopus Deploy - Server 3.11.4 | 294 | Wednesday, March 1, 2017 | Approved | |
Octopus Deploy - Server 3.11.3 | 344 | Tuesday, February 28, 2017 | Approved | |
Octopus Deploy - Server 3.11.2 | 312 | Monday, February 27, 2017 | Approved | |
Octopus Deploy - Server 3.11.1 | 344 | Friday, February 24, 2017 | Approved | |
Octopus Deploy - Server 3.11.0 | 306 | Wednesday, February 22, 2017 | Approved | |
Octopus Deploy - Server 3.10.1 | 305 | Monday, February 20, 2017 | Approved | |
Octopus Deploy - Server 3.10.0 | 386 | Wednesday, February 15, 2017 | Approved | |
Octopus Deploy - Server 3.9.0 | 329 | Tuesday, February 14, 2017 | Approved | |
Octopus Deploy - Server 3.8.9 | 374 | Monday, February 13, 2017 | Approved | |
Octopus Deploy - Server 3.8.8 | 314 | Thursday, February 9, 2017 | Approved | |
Octopus Deploy - Server 3.8.7 | 369 | Tuesday, February 7, 2017 | Approved | |
Octopus Deploy - Server 3.8.6 | 325 | Monday, February 6, 2017 | Approved | |
Octopus Deploy - Server 3.8.5 | 384 | Wednesday, February 1, 2017 | Approved | |
Octopus Deploy - Server 3.8.4 | 334 | Tuesday, January 31, 2017 | Approved | |
Octopus Deploy - Server 3.8.3 | 307 | Monday, January 30, 2017 | Approved | |
Octopus Deploy - Server 3.8.2 | 330 | Tuesday, January 24, 2017 | Approved | |
Octopus Deploy - Server 3.8.1 | 334 | Thursday, January 19, 2017 | Approved | |
Octopus Deploy - Server 3.8.0 | 295 | Wednesday, January 18, 2017 | Approved | |
Octopus Deploy - Server 3.7.18 | 312 | Monday, January 16, 2017 | Approved | |
Octopus Deploy - Server 3.7.17 | 277 | Sunday, January 15, 2017 | Approved | |
Octopus Deploy - Server 3.7.16 | 330 | Thursday, January 12, 2017 | Approved | |
Octopus Deploy - Server 3.7.15 | 334 | Thursday, January 12, 2017 | Approved | |
Octopus Deploy - Server 3.7.14 | 277 | Tuesday, January 10, 2017 | Approved | |
Octopus Deploy - Server 3.7.13 | 328 | Monday, January 9, 2017 | Approved | |
Octopus Deploy - Server 3.7.12 | 315 | Sunday, January 8, 2017 | Approved | |
Octopus Deploy - Server 3.7.11 | 333 | Wednesday, January 4, 2017 | Approved | |
Octopus Deploy - Server 3.7.10 | 367 | Wednesday, December 21, 2016 | Approved | |
Octopus Deploy - Server 3.7.9 | 314 | Monday, December 19, 2016 | Approved | |
Octopus Deploy - Server 3.7.8 | 289 | Monday, December 19, 2016 | Approved | |
Octopus Deploy - Server 3.7.7 | 351 | Thursday, December 15, 2016 | Approved | |
Octopus Deploy - Server 3.7.6 | 335 | Wednesday, December 14, 2016 | Approved | |
Octopus Deploy - Server 3.7.5 | 333 | Monday, December 12, 2016 | Approved | |
Octopus Deploy - Server 3.7.4 | 296 | Thursday, December 8, 2016 | Approved | |
Octopus Deploy - Server 3.7.3 | 321 | Thursday, December 8, 2016 | Approved | |
Octopus Deploy - Server 3.7.2 | 351 | Tuesday, December 6, 2016 | Approved | |
Octopus Deploy - Server 3.7.1 | 297 | Tuesday, December 6, 2016 | Approved | |
Octopus Deploy - Server 3.7.0 | 328 | Tuesday, December 6, 2016 | Approved | |
Octopus Deploy - Server 3.6.2 | 307 | Monday, December 5, 2016 | Approved | |
Octopus Deploy - Server 3.6.1 | 333 | Monday, December 5, 2016 | Approved | |
Octopus Deploy - Server 3.6.0 | 380 | Thursday, December 1, 2016 | Approved | |
Octopus Deploy - Server 3.5.9 | 347 | Wednesday, November 30, 2016 | Approved | |
Octopus Deploy - Server 3.5.8 | 333 | Wednesday, November 30, 2016 | Approved | |
Octopus Deploy - Server 3.5.7 | 291 | Tuesday, November 29, 2016 | Approved | |
Octopus Deploy - Server 3.5.6 | 325 | Tuesday, November 29, 2016 | Approved | |
Octopus Deploy - Server 3.5.5 | 314 | Monday, November 28, 2016 | Approved | |
Octopus Deploy - Server 3.5.4 | 305 | Monday, November 28, 2016 | Approved | |
Octopus Deploy - Server 3.5.3 | 343 | Friday, November 25, 2016 | Approved | |
Octopus Deploy - Server 3.5.2 | 356 | Thursday, November 17, 2016 | Approved | |
Octopus Deploy - Server 3.5.1 | 252 | Tuesday, November 8, 2016 | Approved | |
Octopus Deploy - Server 3.5.0 | 349 | Thursday, November 3, 2016 | Approved | |
Octopus Deploy - Server 3.4.15 | 466 | Monday, October 31, 2016 | Approved | |
Octopus Deploy - Server 3.4.14 | 396 | Monday, October 24, 2016 | Approved | |
Octopus Deploy - Server 3.4.13 | 337 | Monday, October 17, 2016 | Approved | |
Octopus Deploy - Server 3.4.12 | 327 | Thursday, October 6, 2016 | Approved | |
Octopus Deploy - Server 3.4.11 | 420 | Tuesday, September 27, 2016 | Approved | |
Octopus Deploy - Server 3.4.10 | 312 | Thursday, September 22, 2016 | Approved | |
Octopus Deploy - Server 3.4.9 | 358 | Thursday, September 15, 2016 | Approved | |
Octopus Deploy - Server 3.4.8 | 377 | Wednesday, September 14, 2016 | Approved | |
Octopus Deploy - Server 3.4.7 | 362 | Monday, September 12, 2016 | Approved | |
Octopus Deploy - Server 3.4.6 | 325 | Friday, September 9, 2016 | Approved | |
Octopus Deploy - Server 3.4.5 | 276 | Tuesday, September 6, 2016 | Approved | |
Octopus Deploy - Server 3.4.4 | 339 | Tuesday, September 6, 2016 | Approved | |
Octopus Deploy - Server 3.4.3 | 359 | Tuesday, September 6, 2016 | Approved | |
Octopus Deploy - Server 3.4.1 | 365 | Thursday, August 25, 2016 | Approved | |
Octopus Deploy - Server 3.4.0 | 342 | Wednesday, August 24, 2016 | Approved | |
Octopus Deploy - Server 3.4.0-beta0002 | 333 | Friday, July 22, 2016 | Approved | |
Octopus Deploy - Server 3.4.0-beta0001 | 358 | Tuesday, June 28, 2016 | Approved | |
Octopus Deploy - Server 3.3.27 | 294 | Thursday, August 11, 2016 | Approved | |
Octopus Deploy - Server 3.3.26 | 293 | Tuesday, August 9, 2016 | Approved | |
Octopus Deploy - Server 3.3.25 | 338 | Monday, August 8, 2016 | Approved | |
Octopus Deploy - Server 3.3.24 | 466 | Thursday, July 28, 2016 | Approved | |
Octopus Deploy - Server 3.3.23 | 307 | Tuesday, July 26, 2016 | Approved | |
Octopus Deploy - Server 3.3.22 | 349 | Thursday, July 14, 2016 | Approved | |
Octopus Deploy - Server 3.3.21 | 344 | Tuesday, July 12, 2016 | Approved | |
Octopus Deploy - Server 3.3.20 | 265 | Wednesday, June 29, 2016 | Approved | |
Octopus Deploy - Server 3.3.19 | 338 | Wednesday, June 22, 2016 | Approved | |
Octopus Deploy - Server 3.3.18 | 326 | Monday, June 20, 2016 | Approved | |
Octopus Deploy - Server 3.3.17 | 334 | Friday, June 3, 2016 | Approved | |
Octopus Deploy - Server 3.3.16 | 300 | Wednesday, June 1, 2016 | Approved | |
Octopus Deploy - Server 3.3.15 | 325 | Thursday, May 26, 2016 | Approved | |
Octopus Deploy - Server 3.3.14 | 305 | Friday, May 20, 2016 | Approved | |
Octopus Deploy - Server 3.3.13 | 360 | Thursday, May 19, 2016 | Approved | |
Octopus Deploy - Server 3.3.12 | 334 | Tuesday, May 10, 2016 | Approved | |
Octopus Deploy - Server 3.3.11 | 312 | Wednesday, May 4, 2016 | Approved | |
Octopus Deploy - Server 3.3.10 | 300 | Tuesday, April 26, 2016 | Approved | |
Octopus Deploy - Server 3.3.9 | 306 | Thursday, April 21, 2016 | Approved | |
Octopus Deploy - Server 3.3.8 | 324 | Thursday, April 14, 2016 | Approved | |
Octopus Deploy - Server 3.3.7 | 299 | Wednesday, April 13, 2016 | Approved | |
Octopus Deploy - Server 3.3.6 | 388 | Friday, April 1, 2016 | Approved | |
Octopus Deploy - Server 3.3.5 | 356 | Thursday, March 31, 2016 | Approved | |
Octopus Deploy - Server 3.3.4 | 377 | Monday, March 21, 2016 | Approved | |
Octopus Deploy - Server 3.3.3 | 356 | Monday, March 14, 2016 | Approved | |
Octopus Deploy - Server 3.3.2 | 328 | Tuesday, March 8, 2016 | Approved | |
Octopus Deploy - Server 3.3.1 | 375 | Wednesday, March 2, 2016 | Approved | |
Octopus Deploy - Server 3.3.0 | 293 | Monday, February 29, 2016 | Approved | |
Octopus Deploy - Server 3.3.0-beta0002 | 297 | Tuesday, February 16, 2016 | Approved | |
Octopus Deploy - Server 3.3.0-beta0001 | 308 | Friday, January 29, 2016 | Approved | |
Octopus Deploy - Server 3.2.24 | 287 | Monday, February 22, 2016 | Approved | |
Octopus Deploy - Server 3.2.23 | 360 | Thursday, February 11, 2016 | Approved | |
Octopus Deploy - Server 3.2.22 | 343 | Friday, February 5, 2016 | Approved | |
Octopus Deploy - Server 3.2.21 | 406 | Friday, January 29, 2016 | Approved | |
Octopus Deploy - Server 3.2.20 | 303 | Monday, January 25, 2016 | Approved | |
Octopus Deploy - Server 3.2.19 | 322 | Tuesday, January 19, 2016 | Approved | |
Octopus Deploy - Server 3.2.18 | 284 | Tuesday, January 19, 2016 | Approved | |
Octopus Deploy - Server 3.2.17 | 458 | Thursday, January 14, 2016 | Approved | |
Octopus Deploy - Server 3.2.16 | 297 | Tuesday, January 12, 2016 | Approved | |
Octopus Deploy - Server 3.2.15 | 400 | Thursday, January 7, 2016 | Approved | |
Octopus Deploy - Server 3.2.14 | 315 | Tuesday, January 5, 2016 | Approved | |
Octopus Deploy - Server 3.2.13 | 377 | Friday, December 18, 2015 | Approved | |
Octopus Deploy - Server 3.2.12 | 322 | Thursday, December 17, 2015 | Approved | |
Octopus Deploy - Server 3.2.11 | 308 | Monday, December 14, 2015 | Approved | |
Octopus Deploy - Server 3.2.10 | 348 | Friday, December 11, 2015 | Approved | |
Octopus Deploy - Server 3.2.9 | 346 | Tuesday, December 8, 2015 | Approved | |
Octopus Deploy - Server 3.2.8 | 277 | Thursday, December 3, 2015 | Approved | |
Octopus Deploy - Server 3.2.7 | 342 | Monday, November 30, 2015 | Approved | |
Octopus Deploy - Server 3.2.6 | 309 | Tuesday, November 24, 2015 | Approved | |
Octopus Deploy - Server 3.2.5 | 350 | Tuesday, November 24, 2015 | Approved | |
Octopus Deploy - Server 3.2.4 | 301 | Friday, November 20, 2015 | Approved | |
Octopus Deploy - Server 3.2.3 | 354 | Monday, November 16, 2015 | Approved | |
Octopus Deploy - Server 3.2.2 | 280 | Thursday, November 12, 2015 | Approved | |
Octopus Deploy - Server 3.2.1 | 334 | Friday, November 6, 2015 | Approved | |
Octopus Deploy - Server 3.2.0 | 299 | Tuesday, November 3, 2015 | Approved | |
Octopus Deploy - Server 3.2.0-beta0001 | 322 | Monday, October 26, 2015 | Approved | |
Octopus Deploy - Server 3.1.7 | 309 | Monday, November 2, 2015 | Approved | |
Octopus Deploy - Server 3.1.6 | 273 | Friday, October 30, 2015 | Approved | |
Octopus Deploy - Server 3.1.5 | 319 | Wednesday, October 21, 2015 | Approved | |
Octopus Deploy - Server 3.1.4 | 295 | Tuesday, October 13, 2015 | Approved | |
Octopus Deploy - Server 3.1.3 | 329 | Friday, October 2, 2015 | Approved | |
Octopus Deploy - Server 3.1.2 | 288 | Monday, September 28, 2015 | Approved | |
Octopus Deploy - Server 3.1.1 | 361 | Monday, September 21, 2015 | Approved | |
Octopus Deploy - Server 3.1.0 | 353 | Friday, September 18, 2015 | Approved | |
Octopus Deploy - Server 3.1.0-beta0002 | 335 | Saturday, September 5, 2015 | Approved | |
Octopus Deploy - Server 3.1.0-beta0001 | 306 | Thursday, September 3, 2015 | Approved | |
Octopus Deploy - Server 3.0.26 | 339 | Monday, June 27, 2016 | Approved | |
Octopus Deploy - Server 3.0.25 | 256 | Friday, December 18, 2015 | Approved | |
Octopus Deploy - Server 3.0.24 | 299 | Tuesday, September 15, 2015 | Approved | |
Octopus Deploy - Server 3.0.23 | 300 | Thursday, September 10, 2015 | Approved | |
Octopus Deploy - Server 3.0.22 | 289 | Wednesday, September 9, 2015 | Approved | |
Octopus Deploy - Server 3.0.21 | 294 | Wednesday, September 2, 2015 | Approved | |
Octopus Deploy - Server 3.0.20 | 323 | Monday, August 31, 2015 | Approved | |
Octopus Deploy - Server 3.0.19.2485 | 316 | Monday, August 24, 2015 | Approved | |
Octopus Deploy - Server 3.0.18.2471 | 265 | Friday, August 21, 2015 | Approved | |
Octopus Deploy - Server 3.0.17.2462 | 265 | Thursday, August 20, 2015 | Approved | |
Octopus Deploy - Server 3.0.16.2438 | 335 | Tuesday, August 18, 2015 | Approved | |
Octopus Deploy - Server 3.0.16.2428 | 312 | Tuesday, August 18, 2015 | Approved | |
Octopus Deploy - Server 3.0.15.2418 | 302 | Monday, August 17, 2015 | Approved | |
Octopus Deploy - Server 3.0.13.2386 | 340 | Thursday, August 13, 2015 | Approved | |
Octopus Deploy - Server 3.0.12.2366 | 317 | Tuesday, August 11, 2015 | Approved | |
Octopus Deploy - Server 3.0.11.2328 | 330 | Friday, August 7, 2015 | Approved | |
Octopus Deploy - Server 3.0.10.2278 | 269 | Tuesday, August 4, 2015 | Approved | |
Octopus Deploy - Server 3.0.9.2259 | 310 | Monday, August 3, 2015 | Approved | |
Octopus Deploy - Server 3.0.8.2251 | 282 | Friday, July 31, 2015 | Approved | |
Octopus Deploy - Server 3.0.7.2204 | 303 | Wednesday, July 29, 2015 | Approved | |
Octopus Deploy - Server 3.0.6.2140 | 291 | Monday, July 27, 2015 | Approved | |
Octopus Deploy - Server 3.0.5.2124 | 294 | Friday, July 24, 2015 | Approved | |
Octopus Deploy - Server 3.0.4.2105 | 234 | Thursday, July 23, 2015 | Approved | |
Octopus Deploy - Server 3.0.3.2084 | 305 | Wednesday, July 22, 2015 | Approved | |
Octopus Deploy - Server 3.0.2.2077 | 322 | Tuesday, July 21, 2015 | Approved | |
Octopus Deploy - Server 3.0.1.2063 | 297 | Monday, July 20, 2015 | Approved | |
Octopus Deploy - Server 2.6.5.1010 | 645 | Sunday, April 19, 2015 | Approved | |
Octopus Deploy - Server 2.6.4.951 | 357 | Tuesday, March 17, 2015 | Approved | |
Octopus Deploy - Server 2.6.3.886 | 418 | Monday, February 23, 2015 | Approved | |
Octopus Deploy - Server 2.6.2.845 | 405 | Thursday, February 12, 2015 | Approved | |
Octopus Deploy - Server 2.6.1.796 | 338 | Wednesday, February 4, 2015 | Approved | |
Octopus Deploy - Server 2.6.0.778 | 584 | Thursday, December 18, 2014 | Approved | |
Octopus Deploy - Server 2.6.0.751 | 469 | Thursday, November 27, 2014 | Approved | |
Octopus Deploy - Server 2.6.0.749 | 360 | Tuesday, November 25, 2014 | Approved | |
Octopus Deploy - Server 2.5.13.884 | 317 | Monday, February 23, 2015 | Approved | |
Octopus Deploy - Server 2.5.12.666 | 460 | Thursday, November 6, 2014 | Approved | |
Octopus Deploy - Server 2.5.11.614 | 401 | Thursday, October 23, 2014 | Approved | |
Octopus Deploy - Server 2.5.11.610 | 315 | Thursday, October 23, 2014 | Approved | |
Octopus Deploy - Server 2.5.11.585 | 380 | Wednesday, October 22, 2014 | Approved | |
Octopus Deploy - Server 2.5.10.567 | 391 | Tuesday, October 7, 2014 | Approved | |
Octopus Deploy - Server 2.5.9.555 | 352 | Thursday, October 2, 2014 | Approved | |
Octopus Deploy - Server 2.5.9.554 | 363 | Wednesday, October 1, 2014 | Approved | |
Octopus Deploy - Server 2.5.9.550 | 330 | Wednesday, October 1, 2014 | Approved | |
Octopus Deploy - Server 2.5.8.447 | 374 | Wednesday, August 27, 2014 | Approved | |
Octopus Deploy - Server 2.5.7.384 | 306 | Thursday, August 7, 2014 | Approved | |
Octopus Deploy - Server 2.5.6.356 | 343 | Tuesday, August 5, 2014 | Approved | |
Octopus Deploy - Server 2.5.5.318 | 344 | Monday, July 28, 2014 | Approved | |
Octopus Deploy - Server 2.5.5.313 | 302 | Monday, July 28, 2014 | Approved | |
Octopus Deploy - Server 2.5.4.280 | 370 | Monday, July 21, 2014 | Approved | |
Octopus Deploy - Server 2.5.2.221 | 333 | Tuesday, July 1, 2014 | Approved | |
Octopus Deploy - Server 2.4.10.235 | 362 | Thursday, July 3, 2014 | Approved | |
Octopus Deploy - Server 2.4.9.167 | 338 | Friday, June 20, 2014 | Approved | |
Octopus Deploy - Server 2.4.9.126 | 353 | Monday, June 16, 2014 | Approved | |
Octopus Deploy - Server 2.4.8.107 | 338 | Friday, June 13, 2014 | Approved | |
Octopus Deploy - Server 2.4.7.85 | 337 | Thursday, May 29, 2014 | Approved | |
Octopus Deploy - Server 2.4.6.54 | 362 | Thursday, May 22, 2014 | Approved | |
Octopus Deploy - Server 2.4.5.46 | 342 | Wednesday, May 14, 2014 | Approved | |
Octopus Deploy - Server 2.4.4.43 | 352 | Thursday, May 8, 2014 | Approved | |
Octopus Deploy - Server 2.4.4.42 | 342 | Wednesday, May 7, 2014 | Approved | |
Octopus Deploy - Server 2.4.4.41 | 326 | Wednesday, May 7, 2014 | Approved | |
Octopus Deploy - Server 2.4.3.26 | 374 | Tuesday, May 6, 2014 | Approved | |
OctopusDeploy 2.4.3.25 | 294 | Tuesday, May 6, 2014 | Approved | |
OctopusDeploy 1.5.1.1652 | 485 | Monday, March 25, 2013 | Approved | |
OctopusDeploy 1.5.0.1647 | 390 | Monday, March 25, 2013 | Approved | |
OctopusDeploy 1.5.0.1645 | 410 | Sunday, March 24, 2013 | Approved | |
OctopusDeploy 1.4.0.1592 | 414 | Tuesday, March 5, 2013 | Approved | |
OctopusDeploy 1.4.0.1589 | 383 | Monday, March 4, 2013 | Approved | |
OctopusDeploy 1.3.5.1565 | 368 | Monday, February 18, 2013 | Approved | |
OctopusDeploy 1.3.5.1564 | 412 | Monday, February 18, 2013 | Approved | |
OctopusDeploy 1.3.5.1563 | 348 | Monday, February 18, 2013 | Approved | |
OctopusDeploy 1.3.0.1535 | 403 | Wednesday, January 9, 2013 | Approved | |
OctopusDeploy 1.3.0.1530 | 364 | Wednesday, January 9, 2013 | Approved | |
OctopusDeploy 1.2.3.1515 | 414 | Thursday, January 3, 2013 | Approved | |
OctopusDeploy 1.2.3.1513 | 417 | Thursday, January 3, 2013 | Approved | |
OctopusDeploy 1.2.3.1476 | 431 | Tuesday, December 11, 2012 | Approved | |
OctopusDeploy 1.2.2.1455 | 398 | Saturday, December 1, 2012 | Approved | |
OctopusDeploy 1.2.1.1447 | 434 | Wednesday, November 28, 2012 | Approved | |
OctopusDeploy 1.2.0.1446 | 417 | Wednesday, November 28, 2012 | Approved | |
OctopusDeploy 1.2.0.1445 | 444 | Wednesday, November 28, 2012 | Approved | |
OctopusDeploy 1.1.8.1431 | 383 | Thursday, November 22, 2012 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Octopus Deploy - Server and the Octopus Deploy - Server 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 Octopus Deploy - Server, 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.