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:
85,867
Downloads of v 20.2.243:
16
Last Update:
17 Jan 2022
Package Maintainer(s):
Software Author(s):
- Invantive Software B.V.
Tags:
activecampaign afas-online autotask bridge-online cbs.nl company.info confluence console Data documentcloud dropbox dynamicscrm ecb-exchange-rates edifact exact-online ezbase facebook firebird foxpro freshdesk ftp gitlab headless Hub Invantive jira jira-service-desk kadaster keepass linkedin loket.nl magento mail mendix microsoft-graph mt940 mysql nasa nmbrs oauth octopus odata onenote openarch open-exchange-rates openspending.nl oracle ossus paypal postgresql proactive rdw.nl robaws roller rss salesforce schedule severa sftp silveressence simplicate slack snelstart sql sql-server stackexchange stackoverflow swagger swift teamleader teamviewer teradata twinfield twitter ubl vies virustotal visma-eaccounting visma-net visma-severa wikipedia xaa xaf xas yuki- Software Specific:
- Software Site
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Invantive(R) Data Hub
This is not the latest version of Invantive(R) Data Hub available.
- 1
- 2
- 3
20.2.243 | Updated: 17 Jan 2022
- Software Specific:
- Software Site
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
85,867
Downloads of v 20.2.243:
16
Maintainer(s):
Software Author(s):
- Invantive Software B.V.
Tags:
activecampaign afas-online autotask bridge-online cbs.nl company.info confluence console Data documentcloud dropbox dynamicscrm ecb-exchange-rates edifact exact-online ezbase facebook firebird foxpro freshdesk ftp gitlab headless Hub Invantive jira jira-service-desk kadaster keepass linkedin loket.nl magento mail mendix microsoft-graph mt940 mysql nasa nmbrs oauth octopus odata onenote openarch open-exchange-rates openspending.nl oracle ossus paypal postgresql proactive rdw.nl robaws roller rss salesforce schedule severa sftp silveressence simplicate slack snelstart sql sql-server stackexchange stackoverflow swagger swift teamleader teamviewer teradata twinfield twitter ubl vies virustotal visma-eaccounting visma-net visma-severa wikipedia xaa xaf xas yukiEdit 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
Invantive(R) Data Hub
20.2.243
This is not the latest version of Invantive(R) Data Hub available.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Invantive(R) Data Hub, run the following command from the command line or from PowerShell:
To upgrade Invantive(R) Data Hub, run the following command from the command line or from PowerShell:
To uninstall Invantive(R) Data Hub, 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 invantive-data-hub --internalize --version=20.2.243 --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 invantive-data-hub -y --source="'INTERNAL REPO URL'" --version="'20.2.243'" [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 invantive-data-hub -y --source="'INTERNAL REPO URL'" --version="'20.2.243'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install invantive-data-hub
win_chocolatey:
name: invantive-data-hub
version: '20.2.243'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'invantive-data-hub' do
action :install
source 'INTERNAL REPO URL'
version '20.2.243'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller invantive-data-hub
{
Name = "invantive-data-hub"
Version = "20.2.243"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'invantive-data-hub':
ensure => '20.2.243',
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.
This package was approved as a trusted package on 17 Jan 2022.
Invantive Data Hub is command-line driven software that is capable of executing Invantive Query Tool-compatible scripts across many database and cloud platforms. Ideal for high volume data loads and extractions of cloud applications such as Exact Online or Salesforce. It provides a headless mode which makes it ideal for use in server environments and scheduled uploads and downloads in lights-out operations. Invantive Data Hub is also an ideal execution environment for large data replication jobs using Invantive Data Replicator.
$ErrorActionPreference = 'Stop';
$packageName= 'invantive-data-hub'
$packageArgs = @{
packageName = $packageName
fileType = 'MSI'
url = 'https://download.invantive.com/release/msi/Invantive%20Data%20Hub-20.2.243.msi'
url64bit = 'https://download.invantive.com/release/msi/Invantive%20Data%20Hub-20.2.243.msi'
softwareName = 'Invantive Data Hub'
checksum = '3DC2921CC4C78BC06E7A8A913F52B6C17755001FFF54905AE20811EAC376101A'
checksumType = 'sha256'
checksum64 = '3DC2921CC4C78BC06E7A8A913F52B6C17755001FFF54905AE20811EAC376101A'
checksumType64 = 'sha256'
silentArgs = "/qn /norestart /l*v `"$env:Temp\invantive-data-hub-20.2.243-msi-install.log`""
validExitCodes = @(0, 3010, 1641)
}
Install-ChocolateyPackage @packageArgs
Log in or click on link to see number of positives.
- invantive-data-hub.20.2.243.nupkg (d2bbed017371) - ## / 61
- Invantive Data Hub-20.2.243.msi (3dc2921cc4c7) - ## / 53
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 |
---|---|---|---|---|
Invantive(R) Data Hub 22.1.48-BETA | 7 | Monday, May 16, 2022 | Approved | |
Invantive(R) Data Hub 22.1.47-BETA | 7 | Sunday, May 15, 2022 | Approved | |
Invantive(R) Data Hub 22.1.46-BETA | 9 | Sunday, May 15, 2022 | Approved | |
Invantive(R) Data Hub 22.1.40-BETA | 7 | Thursday, May 12, 2022 | Approved | |
Invantive(R) Data Hub 22.1.39-BETA | 8 | Tuesday, May 10, 2022 | Approved | |
Invantive(R) Data Hub 22.1.38-BETA | 9 | Monday, May 9, 2022 | Approved | |
Invantive(R) Data Hub 22.1.37-BETA | 8 | Sunday, May 8, 2022 | Approved | |
Invantive(R) Data Hub 22.1.36-BETA | 10 | Saturday, May 7, 2022 | Approved | |
Invantive(R) Data Hub 22.1.35-BETA | 9 | Wednesday, May 4, 2022 | Approved | |
Invantive(R) Data Hub 22.1.29-BETA | 12 | Sunday, April 3, 2022 | Approved | |
Invantive(R) Data Hub 22.1.27-BETA | 11 | Saturday, April 2, 2022 | Approved | |
Invantive(R) Data Hub 22.1.24-BETA | 11 | Friday, April 1, 2022 | Approved | |
Invantive(R) Data Hub 22.1.21-BETA | 15 | Sunday, March 13, 2022 | Approved | |
Invantive(R) Data Hub 22.1.6-BETA | 17 | Wednesday, February 2, 2022 | Approved | |
Invantive(R) Data Hub 22.1.1-BETA | 16 | Thursday, January 27, 2022 | Approved | |
Invantive(R) Data Hub 22.0.187 | 9 | Sunday, May 15, 2022 | Approved | |
Invantive(R) Data Hub 22.0.186 | 6 | Friday, May 13, 2022 | Approved | |
Invantive(R) Data Hub 22.0.183 | 9 | Tuesday, May 10, 2022 | Approved | |
Invantive(R) Data Hub 22.0.182 | 7 | Tuesday, May 10, 2022 | Approved | |
Invantive(R) Data Hub 22.0.180 | 8 | Tuesday, May 10, 2022 | Approved | |
Invantive(R) Data Hub 22.0.177 | 7 | Monday, May 9, 2022 | Approved | |
Invantive(R) Data Hub 22.0.176 | 6 | Monday, May 9, 2022 | Approved | |
Invantive(R) Data Hub 22.0.170 | 9 | Monday, May 9, 2022 | Approved | |
Invantive(R) Data Hub 22.0.169 | 6 | Sunday, May 8, 2022 | Approved | |
Invantive(R) Data Hub 22.0.168 | 8 | Sunday, May 8, 2022 | Approved | |
Invantive(R) Data Hub 22.0.167 | 8 | Sunday, May 8, 2022 | Approved | |
Invantive(R) Data Hub 22.0.166 | 7 | Saturday, May 7, 2022 | Approved | |
Invantive(R) Data Hub 22.0.165 | 6 | Friday, May 6, 2022 | Approved | |
Invantive(R) Data Hub 22.0.164 | 7 | Friday, May 6, 2022 | Approved | |
Invantive(R) Data Hub 22.0.163 | 8 | Thursday, May 5, 2022 | Approved | |
Invantive(R) Data Hub 22.0.162 | 8 | Thursday, May 5, 2022 | Approved | |
Invantive(R) Data Hub 22.0.161 | 9 | Thursday, May 5, 2022 | Approved | |
Invantive(R) Data Hub 22.0.160 | 6 | Wednesday, May 4, 2022 | Approved | |
Invantive(R) Data Hub 22.0.159 | 6 | Wednesday, May 4, 2022 | Approved | |
Invantive(R) Data Hub 22.0.158 | 11 | Tuesday, May 3, 2022 | Approved | |
Invantive(R) Data Hub 22.0.156 | 12 | Monday, May 2, 2022 | Approved | |
Invantive(R) Data Hub 22.0.153 | 7 | Friday, April 29, 2022 | Approved | |
Invantive(R) Data Hub 22.0.152 | 6 | Friday, April 29, 2022 | Approved | |
Invantive(R) Data Hub 22.0.151 | 9 | Thursday, April 28, 2022 | Approved | |
Invantive(R) Data Hub 22.0.150 | 9 | Tuesday, April 26, 2022 | Approved | |
Invantive(R) Data Hub 22.0.142 | 8 | Saturday, April 23, 2022 | Approved | |
Invantive(R) Data Hub 22.0.141 | 6 | Friday, April 22, 2022 | Approved | |
Invantive(R) Data Hub 22.0.140 | 7 | Thursday, April 21, 2022 | Approved | |
Invantive(R) Data Hub 22.0.138 | 7 | Thursday, April 21, 2022 | Approved | |
Invantive(R) Data Hub 22.0.137 | 6 | Wednesday, April 20, 2022 | Approved | |
Invantive(R) Data Hub 22.0.136 | 5 | Wednesday, April 20, 2022 | Approved | |
Invantive(R) Data Hub 22.0.135 | 9 | Tuesday, April 19, 2022 | Approved | |
Invantive(R) Data Hub 22.0.134 | 7 | Tuesday, April 19, 2022 | Approved | |
Invantive(R) Data Hub 22.0.130 | 10 | Monday, April 18, 2022 | Approved | |
Invantive(R) Data Hub 22.0.128 | 11 | Saturday, April 16, 2022 | Approved | |
Invantive(R) Data Hub 22.0.127 | 10 | Friday, April 15, 2022 | Approved | |
Invantive(R) Data Hub 22.0.126 | 11 | Friday, April 15, 2022 | Approved | |
Invantive(R) Data Hub 22.0.125 | 12 | Thursday, April 14, 2022 | Approved | |
Invantive(R) Data Hub 22.0.124 | 10 | Thursday, April 14, 2022 | Approved | |
Invantive(R) Data Hub 22.0.123 | 11 | Wednesday, April 13, 2022 | Approved | |
Invantive(R) Data Hub 22.0.122 | 9 | Wednesday, April 13, 2022 | Approved | |
Invantive(R) Data Hub 22.0.121 | 9 | Wednesday, April 13, 2022 | Approved | |
Invantive(R) Data Hub 22.0.120 | 9 | Tuesday, April 12, 2022 | Approved | |
Invantive(R) Data Hub 22.0.118 | 10 | Tuesday, April 12, 2022 | Approved | |
Invantive(R) Data Hub 22.0.117 | 11 | Monday, April 11, 2022 | Approved | |
Invantive(R) Data Hub 22.0.116 | 11 | Monday, April 11, 2022 | Approved | |
Invantive(R) Data Hub 22.0.115 | 12 | Sunday, April 10, 2022 | Approved | |
Invantive(R) Data Hub 22.0.114 | 9 | Saturday, April 9, 2022 | Approved | |
Invantive(R) Data Hub 22.0.111 | 9 | Saturday, April 9, 2022 | Approved | |
Invantive(R) Data Hub 22.0.104 | 11 | Wednesday, April 6, 2022 | Approved | |
Invantive(R) Data Hub 22.0.103 | 8 | Tuesday, April 5, 2022 | Approved | |
Invantive(R) Data Hub 22.0.102 | 12 | Monday, April 4, 2022 | Approved | |
Invantive(R) Data Hub 22.0.101 | 11 | Sunday, April 3, 2022 | Approved | |
Invantive(R) Data Hub 22.0.99 | 10 | Sunday, April 3, 2022 | Approved | |
Invantive(R) Data Hub 22.0.96 | 12 | Friday, April 1, 2022 | Approved | |
Invantive(R) Data Hub 22.0.94 | 10 | Thursday, March 31, 2022 | Approved | |
Invantive(R) Data Hub 22.0.92 | 10 | Wednesday, March 30, 2022 | Approved | |
Invantive(R) Data Hub 22.0.91 | 12 | Monday, March 28, 2022 | Approved | |
Invantive(R) Data Hub 22.0.90 | 15 | Thursday, March 24, 2022 | Approved | |
Invantive(R) Data Hub 22.0.89 | 15 | Thursday, March 24, 2022 | Approved | |
Invantive(R) Data Hub 22.0.88 | 13 | Wednesday, March 23, 2022 | Approved | |
Invantive(R) Data Hub 22.0.87 | 10 | Wednesday, March 23, 2022 | Approved | |
Invantive(R) Data Hub 22.0.86 | 17 | Tuesday, March 22, 2022 | Approved | |
Invantive(R) Data Hub 22.0.85 | 13 | Friday, March 18, 2022 | Approved | |
Invantive(R) Data Hub 22.0.84 | 10 | Thursday, March 17, 2022 | Approved | |
Invantive(R) Data Hub 22.0.83 | 11 | Thursday, March 17, 2022 | Approved | |
Invantive(R) Data Hub 22.0.82 | 11 | Wednesday, March 16, 2022 | Approved | |
Invantive(R) Data Hub 22.0.81 | 10 | Tuesday, March 15, 2022 | Approved | |
Invantive(R) Data Hub 22.0.80 | 16 | Monday, March 14, 2022 | Approved | |
Invantive(R) Data Hub 22.0.76 | 12 | Sunday, March 13, 2022 | Approved | |
Invantive(R) Data Hub 22.0.75 | 14 | Saturday, March 12, 2022 | Approved | |
Invantive(R) Data Hub 22.0.72 | 11 | Friday, March 11, 2022 | Approved | |
Invantive(R) Data Hub 22.0.66 | 17 | Monday, March 7, 2022 | Approved | |
Invantive(R) Data Hub 22.0.58 | 13 | Wednesday, February 23, 2022 | Approved | |
Invantive(R) Data Hub 22.0.55 | 15 | Tuesday, February 22, 2022 | Approved | |
Invantive(R) Data Hub 22.0.44 | 18 | Tuesday, February 15, 2022 | Approved | |
Invantive(R) Data Hub 22.0.39 | 15 | Saturday, February 12, 2022 | Approved | |
Invantive(R) Data Hub 22.0.35 | 16 | Thursday, February 10, 2022 | Approved | |
Invantive(R) Data Hub 22.0.33 | 15 | Wednesday, February 9, 2022 | Approved | |
Invantive(R) Data Hub 22.0.32 | 16 | Tuesday, February 8, 2022 | Approved | |
Invantive(R) Data Hub 22.0.25 | 13 | Sunday, February 6, 2022 | Approved | |
Invantive(R) Data Hub 22.0.16 | 14 | Wednesday, February 2, 2022 | Approved | |
Invantive(R) Data Hub 22.0.4 | 18 | Thursday, January 27, 2022 | Approved | |
Invantive(R) Data Hub 20.2.245 | 20 | Tuesday, January 18, 2022 | Approved | |
Invantive(R) Data Hub 20.2.243 | 16 | Monday, January 17, 2022 | Approved | |
Invantive(R) Data Hub 20.2.241 | 16 | Saturday, January 15, 2022 | Approved | |
Invantive(R) Data Hub 20.2.227 | 14 | Thursday, January 13, 2022 | Approved | |
Invantive(R) Data Hub 20.2.225 | 15 | Thursday, January 13, 2022 | Approved | |
Invantive(R) Data Hub 20.2.224 | 13 | Thursday, January 13, 2022 | Approved | |
Invantive(R) Data Hub 20.2.200 | 15 | Sunday, January 9, 2022 | Approved | |
Invantive(R) Data Hub 20.2.196 | 20 | Tuesday, January 4, 2022 | Approved | |
Invantive(R) Data Hub 20.2.193 | 15 | Monday, January 3, 2022 | Approved | |
Invantive(R) Data Hub 20.2.182 | 15 | Friday, December 31, 2021 | Approved | |
Invantive(R) Data Hub 20.2.180 | 14 | Thursday, December 30, 2021 | Approved | |
Invantive(R) Data Hub 20.2.177 | 20 | Tuesday, December 28, 2021 | Approved | |
Invantive(R) Data Hub 20.2.172 | 17 | Friday, December 24, 2021 | Approved | |
Invantive(R) Data Hub 20.2.169 | 16 | Thursday, December 23, 2021 | Approved | |
Invantive(R) Data Hub 20.2.167 | 19 | Tuesday, December 21, 2021 | Approved | |
Invantive(R) Data Hub 20.2.161 | 18 | Thursday, December 16, 2021 | Approved | |
Invantive(R) Data Hub 20.2.159 | 17 | Wednesday, December 15, 2021 | Approved | |
Invantive(R) Data Hub 20.2.156 | 15 | Thursday, December 9, 2021 | Approved | |
Invantive(R) Data Hub 20.2.151 | 14 | Wednesday, December 8, 2021 | Approved | |
Invantive(R) Data Hub 20.2.147 | 21 | Monday, December 6, 2021 | Approved | |
Invantive(R) Data Hub 20.2.146 | 22 | Friday, December 3, 2021 | Approved | |
Invantive(R) Data Hub 20.2.145 | 15 | Thursday, December 2, 2021 | Approved | |
Invantive(R) Data Hub 20.2.143 | 17 | Wednesday, December 1, 2021 | Approved | |
Invantive(R) Data Hub 20.2.141 | 18 | Tuesday, November 30, 2021 | Approved | |
Invantive(R) Data Hub 20.2.139 | 14 | Monday, November 29, 2021 | Approved | |
Invantive(R) Data Hub 20.2.129 | 20 | Friday, November 26, 2021 | Approved | |
Invantive(R) Data Hub 20.2.128 | 18 | Wednesday, November 24, 2021 | Approved | |
Invantive(R) Data Hub 20.2.127 | 20 | Monday, November 22, 2021 | Approved | |
Invantive(R) Data Hub 20.2.126 | 17 | Saturday, November 20, 2021 | Approved | |
Invantive(R) Data Hub 20.2.125 | 16 | Friday, November 19, 2021 | Approved | |
Invantive(R) Data Hub 20.2.124 | 27 | Wednesday, November 17, 2021 | Approved | |
Invantive(R) Data Hub 20.2.122 | 19 | Tuesday, November 16, 2021 | Approved | |
Invantive(R) Data Hub 20.2.120 | 22 | Friday, November 12, 2021 | Approved | |
Invantive(R) Data Hub 20.2.112 | 20 | Monday, November 8, 2021 | Approved | |
Invantive(R) Data Hub 20.2.95 | 21 | Friday, November 5, 2021 | Approved | |
Invantive(R) Data Hub 20.2.86 | 23 | Wednesday, November 3, 2021 | Approved | |
Invantive(R) Data Hub 20.2.74 | 20 | Tuesday, October 26, 2021 | Approved | |
Invantive(R) Data Hub 20.2.72 | 23 | Friday, October 22, 2021 | Approved | |
Invantive(R) Data Hub 20.2.71 | 20 | Thursday, October 21, 2021 | Approved | |
Invantive(R) Data Hub 20.2.58 | 18 | Tuesday, October 5, 2021 | Approved | |
Invantive(R) Data Hub 20.2.56 | 19 | Monday, October 4, 2021 | Approved | |
Invantive(R) Data Hub 20.2.54 | 28 | Sunday, October 3, 2021 | Approved | |
Invantive(R) Data Hub 20.2.53 | 14 | Saturday, October 2, 2021 | Approved | |
Invantive(R) Data Hub 20.2.46 | 23 | Thursday, September 30, 2021 | Approved | |
Invantive(R) Data Hub 20.2.44 | 18 | Wednesday, September 29, 2021 | Approved | |
Invantive(R) Data Hub 20.2.42 | 19 | Tuesday, September 28, 2021 | Approved | |
Invantive(R) Data Hub 20.2.37 | 22 | Monday, September 27, 2021 | Approved | |
Invantive(R) Data Hub 20.2.34 | 18 | Friday, September 24, 2021 | Approved | |
Invantive(R) Data Hub 20.2.32 | 27 | Thursday, September 23, 2021 | Approved | |
Invantive(R) Data Hub 20.2.27 | 15 | Wednesday, September 22, 2021 | Approved | |
Invantive(R) Data Hub 20.2.21 | 15 | Tuesday, September 21, 2021 | Approved | |
Invantive(R) Data Hub 20.2.19 | 19 | Monday, September 20, 2021 | Approved | |
Invantive(R) Data Hub 20.2.17 | 21 | Friday, September 17, 2021 | Approved | |
Invantive(R) Data Hub 20.2.15 | 22 | Wednesday, September 15, 2021 | Approved | |
Invantive(R) Data Hub 20.2.14 | 17 | Tuesday, September 14, 2021 | Approved | |
Invantive(R) Data Hub 20.2.13 | 17 | Monday, September 13, 2021 | Approved | |
Invantive(R) Data Hub 20.2.12 | 15 | Monday, September 13, 2021 | Approved | |
Invantive(R) Data Hub 20.2.11 | 22 | Sunday, September 12, 2021 | Approved | |
Invantive(R) Data Hub 20.2.10 | 23 | Saturday, September 11, 2021 | Approved | |
Invantive(R) Data Hub 20.2.9 | 28 | Thursday, September 9, 2021 | Approved | |
Invantive(R) Data Hub 20.2.8 | 23 | Tuesday, September 7, 2021 | Approved | |
Invantive(R) Data Hub 20.2.6 | 21 | Monday, September 6, 2021 | Approved | |
Invantive(R) Data Hub 20.2.5 | 20 | Sunday, September 5, 2021 | Approved | |
Invantive(R) Data Hub 20.2.3 | 20 | Friday, September 3, 2021 | Approved | |
Invantive(R) Data Hub 20.2.2-RC | 29 | Thursday, September 2, 2021 | Approved | |
Invantive(R) Data Hub 20.2.1-RC | 16 | Wednesday, September 1, 2021 | Approved | |
Invantive(R) Data Hub 20.2.0-RC | 25 | Wednesday, September 1, 2021 | Approved | |
Invantive(R) Data Hub 20.1.537-BETA | 28 | Tuesday, August 17, 2021 | Approved | |
Invantive(R) Data Hub 20.1.534-BETA | 20 | Monday, August 9, 2021 | Approved | |
Invantive(R) Data Hub 20.1.532-BETA | 23 | Thursday, August 5, 2021 | Approved | |
Invantive(R) Data Hub 20.1.530-BETA | 21 | Wednesday, August 4, 2021 | Approved | |
Invantive(R) Data Hub 20.1.529-BETA | 21 | Tuesday, August 3, 2021 | Approved | |
Invantive(R) Data Hub 20.1.524-BETA | 23 | Friday, July 30, 2021 | Approved | |
Invantive(R) Data Hub 20.1.517-BETA | 19 | Thursday, July 29, 2021 | Approved | |
Invantive(R) Data Hub 20.1.516-BETA | 23 | Wednesday, July 28, 2021 | Approved | |
Invantive(R) Data Hub 20.1.502-BETA | 21 | Friday, July 23, 2021 | Approved | |
Invantive(R) Data Hub 20.1.499-BETA | 24 | Wednesday, July 21, 2021 | Approved | |
Invantive(R) Data Hub 20.1.497-BETA | 19 | Wednesday, July 21, 2021 | Approved | |
Invantive(R) Data Hub 20.1.495-BETA | 22 | Tuesday, July 20, 2021 | Approved | |
Invantive(R) Data Hub 20.1.490-BETA | 28 | Sunday, July 18, 2021 | Approved | |
Invantive(R) Data Hub 20.1.489-BETA | 21 | Saturday, July 17, 2021 | Approved | |
Invantive(R) Data Hub 20.1.485-BETA | 25 | Saturday, July 17, 2021 | Approved | |
Invantive(R) Data Hub 20.1.483-BETA | 29 | Thursday, July 15, 2021 | Approved | |
Invantive(R) Data Hub 20.1.478-BETA | 29 | Friday, July 9, 2021 | Approved | |
Invantive(R) Data Hub 20.1.476-BETA | 27 | Thursday, July 8, 2021 | Approved | |
Invantive(R) Data Hub 20.1.475-BETA | 31 | Thursday, July 8, 2021 | Approved | |
Invantive(R) Data Hub 20.1.474-BETA | 32 | Tuesday, July 6, 2021 | Approved | |
Invantive(R) Data Hub 20.1.472-BETA | 26 | Monday, July 5, 2021 | Approved | |
Invantive(R) Data Hub 20.1.471-BETA | 26 | Monday, July 5, 2021 | Approved | |
Invantive(R) Data Hub 20.1.469-BETA | 25 | Friday, July 2, 2021 | Approved | |
Invantive(R) Data Hub 20.1.467-BETA | 24 | Thursday, July 1, 2021 | Approved | |
Invantive(R) Data Hub 20.1.464-BETA | 35 | Monday, June 28, 2021 | Approved | |
Invantive(R) Data Hub 20.1.462-BETA | 34 | Monday, June 28, 2021 | Approved | |
Invantive(R) Data Hub 20.1.460-BETA | 28 | Friday, June 25, 2021 | Approved | |
Invantive(R) Data Hub 20.1.452-BETA | 22 | Thursday, June 24, 2021 | Approved | |
Invantive(R) Data Hub 20.1.449-BETA | 28 | Tuesday, June 22, 2021 | Approved | |
Invantive(R) Data Hub 20.1.444-BETA | 26 | Thursday, June 10, 2021 | Approved | |
Invantive(R) Data Hub 20.1.441-BETA | 26 | Tuesday, June 8, 2021 | Approved | |
Invantive(R) Data Hub 20.1.437-BETA | 31 | Friday, June 4, 2021 | Approved | |
Invantive(R) Data Hub 20.1.435-BETA | 33 | Monday, May 31, 2021 | Approved | |
Invantive(R) Data Hub 20.1.429-BETA | 29 | Friday, May 21, 2021 | Approved | |
Invantive(R) Data Hub 20.1.423-BETA | 26 | Monday, May 17, 2021 | Approved | |
Invantive(R) Data Hub 20.1.419-BETA | 29 | Tuesday, May 11, 2021 | Approved | |
Invantive(R) Data Hub 20.1.417-BETA | 35 | Friday, May 7, 2021 | Approved | |
Invantive(R) Data Hub 20.1.407-BETA | 24 | Wednesday, April 28, 2021 | Approved | |
Invantive(R) Data Hub 20.1.401-BETA | 36 | Thursday, April 22, 2021 | Approved | |
Invantive(R) Data Hub 20.1.398-BETA | 26 | Tuesday, April 20, 2021 | Approved | |
Invantive(R) Data Hub 20.1.396-BETA | 34 | Wednesday, April 14, 2021 | Approved | |
Invantive(R) Data Hub 20.1.394-BETA | 41 | Wednesday, April 7, 2021 | Approved | |
Invantive(R) Data Hub 20.1.393-BETA | 30 | Monday, April 5, 2021 | Approved | |
Invantive(R) Data Hub 20.1.392-BETA | 30 | Thursday, April 1, 2021 | Approved | |
Invantive(R) Data Hub 20.1.388-BETA | 45 | Monday, March 22, 2021 | Approved | |
Invantive(R) Data Hub 20.1.386-BETA | 31 | Thursday, March 18, 2021 | Approved | |
Invantive(R) Data Hub 20.1.385-BETA | 25 | Tuesday, March 16, 2021 | Approved | |
Invantive(R) Data Hub 20.1.378-BETA | 32 | Sunday, March 14, 2021 | Approved | |
Invantive(R) Data Hub 20.1.372-BETA | 39 | Tuesday, March 9, 2021 | Approved | |
Invantive(R) Data Hub 20.1.371-BETA | 41 | Sunday, February 28, 2021 | Approved | |
Invantive(R) Data Hub 20.1.369-BETA | 41 | Tuesday, February 23, 2021 | Approved | |
Invantive(R) Data Hub 20.1.368-BETA | 39 | Friday, February 19, 2021 | Approved | |
Invantive(R) Data Hub 20.1.366-BETA | 44 | Thursday, February 18, 2021 | Approved | |
Invantive(R) Data Hub 20.1.365-BETA | 35 | Wednesday, February 17, 2021 | Approved | |
Invantive(R) Data Hub 20.1.364-BETA | 34 | Wednesday, February 17, 2021 | Approved | |
Invantive(R) Data Hub 20.1.363-BETA | 45 | Saturday, February 13, 2021 | Approved | |
Invantive(R) Data Hub 20.1.362-BETA | 28 | Friday, February 12, 2021 | Approved | |
Invantive(R) Data Hub 20.1.356-BETA | 40 | Wednesday, February 10, 2021 | Approved | |
Invantive(R) Data Hub 20.1.355-BETA | 43 | Sunday, February 7, 2021 | Approved | |
Invantive(R) Data Hub 20.1.354-BETA | 35 | Saturday, February 6, 2021 | Approved | |
Invantive(R) Data Hub 20.1.353-BETA | 43 | Friday, February 5, 2021 | Approved | |
Invantive(R) Data Hub 20.1.348-BETA | 39 | Monday, February 1, 2021 | Approved | |
Invantive(R) Data Hub 20.1.345-BETA | 42 | Saturday, January 30, 2021 | Approved | |
Invantive(R) Data Hub 20.1.335-BETA | 53 | Tuesday, January 19, 2021 | Approved | |
Invantive(R) Data Hub 20.1.329-BETA | 40 | Wednesday, January 13, 2021 | Approved | |
Invantive(R) Data Hub 20.1.327-BETA | 42 | Friday, January 8, 2021 | Approved | |
Invantive(R) Data Hub 20.1.326-BETA | 37 | Monday, January 4, 2021 | Approved | |
Invantive(R) Data Hub 20.1.325-BETA | 45 | Tuesday, December 29, 2020 | Approved | |
Invantive(R) Data Hub 20.1.319-BETA | 37 | Monday, December 28, 2020 | Approved | |
Invantive(R) Data Hub 20.1.317-BETA | 55 | Sunday, December 27, 2020 | Approved | |
Invantive(R) Data Hub 20.1.315-BETA | 45 | Tuesday, December 22, 2020 | Approved | |
Invantive(R) Data Hub 20.1.313-BETA | 49 | Monday, December 21, 2020 | Approved | |
Invantive(R) Data Hub 20.1.308-BETA | 45 | Thursday, December 17, 2020 | Approved | |
Invantive(R) Data Hub 20.1.306-BETA | 37 | Wednesday, December 16, 2020 | Approved | |
Invantive(R) Data Hub 20.1.302-BETA | 44 | Sunday, December 13, 2020 | Approved | |
Invantive(R) Data Hub 20.1.301-BETA | 49 | Thursday, December 10, 2020 | Approved | |
Invantive(R) Data Hub 20.1.300-BETA | 35 | Friday, December 4, 2020 | Approved | |
Invantive(R) Data Hub 20.1.298-BETA | 49 | Wednesday, December 2, 2020 | Approved | |
Invantive(R) Data Hub 20.1.290-BETA | 55 | Sunday, November 29, 2020 | Approved | |
Invantive(R) Data Hub 20.1.289-BETA | 34 | Friday, November 27, 2020 | Approved | |
Invantive(R) Data Hub 20.1.288-BETA | 36 | Friday, November 27, 2020 | Exempted | |
Invantive(R) Data Hub 20.1.284-BETA | 42 | Friday, November 20, 2020 | Approved | |
Invantive(R) Data Hub 20.1.282-BETA | 45 | Tuesday, November 17, 2020 | Approved | |
Invantive(R) Data Hub 20.1.279-BETA | 37 | Monday, November 16, 2020 | Approved | |
Invantive(R) Data Hub 20.1.278-BETA | 42 | Friday, November 13, 2020 | Approved | |
Invantive(R) Data Hub 20.1.277-BETA | 48 | Tuesday, November 10, 2020 | Approved | |
Invantive(R) Data Hub 20.1.271-BETA | 46 | Friday, November 6, 2020 | Approved | |
Invantive(R) Data Hub 20.1.270-BETA | 46 | Friday, November 6, 2020 | Approved | |
Invantive(R) Data Hub 20.1.267-BETA | 43 | Wednesday, November 4, 2020 | Approved | |
Invantive(R) Data Hub 20.1.181-BETA | 68 | Friday, August 28, 2020 | Approved | |
Invantive(R) Data Hub 20.1.20-BETA | 87 | Saturday, May 2, 2020 | Approved | |
Invantive(R) Data Hub 20.0.156 | 24 | Thursday, July 15, 2021 | Approved | |
Invantive(R) Data Hub 20.0.155 | 26 | Monday, June 28, 2021 | Approved | |
Invantive(R) Data Hub 20.0.154 | 28 | Thursday, June 10, 2021 | Approved | |
Invantive(R) Data Hub 20.0.152 | 39 | Thursday, June 3, 2021 | Approved | |
Invantive(R) Data Hub 20.0.151 | 415 | Monday, May 10, 2021 | Approved | |
Invantive(R) Data Hub 20.0.149 | 41 | Thursday, April 29, 2021 | Approved | |
Invantive(R) Data Hub 20.0.148 | 35 | Thursday, April 8, 2021 | Approved | |
Invantive(R) Data Hub 20.0.145 | 44 | Wednesday, March 3, 2021 | Approved | |
Invantive(R) Data Hub 20.0.143 | 31 | Tuesday, February 16, 2021 | Approved | |
Invantive(R) Data Hub 20.0.142 | 37 | Saturday, February 13, 2021 | Approved | |
Invantive(R) Data Hub 20.0.141 | 48 | Friday, February 5, 2021 | Approved | |
Invantive(R) Data Hub 20.0.140 | 50 | Tuesday, February 2, 2021 | Approved | |
Invantive(R) Data Hub 20.0.138 | 47 | Thursday, January 14, 2021 | Approved | |
Invantive(R) Data Hub 20.0.137 | 47 | Wednesday, January 13, 2021 | Approved | |
Invantive(R) Data Hub 20.0.136 | 61 | Tuesday, January 12, 2021 | Approved | |
Invantive(R) Data Hub 20.0.135 | 45 | Friday, January 8, 2021 | Approved | |
Invantive(R) Data Hub 20.0.134 | 53 | Monday, January 4, 2021 | Approved | |
Invantive(R) Data Hub 20.0.133 | 49 | Monday, December 28, 2020 | Approved | |
Invantive(R) Data Hub 20.0.131 | 39 | Tuesday, December 15, 2020 | Approved | |
Invantive(R) Data Hub 20.0.129 | 51 | Monday, December 7, 2020 | Approved | |
Invantive(R) Data Hub 20.0.128 | 51 | Friday, December 4, 2020 | Approved | |
Invantive(R) Data Hub 20.0.127 | 44 | Wednesday, December 2, 2020 | Approved | |
Invantive(R) Data Hub 20.0.126 | 49 | Saturday, November 28, 2020 | Approved | |
Invantive(R) Data Hub 20.0.123 | 42 | Wednesday, November 25, 2020 | Approved | |
Invantive(R) Data Hub 20.0.122 | 47 | Tuesday, November 24, 2020 | Approved | |
Invantive(R) Data Hub 20.0.119 | 52 | Thursday, November 19, 2020 | Approved | |
Invantive(R) Data Hub 20.0.118 | 58 | Wednesday, November 18, 2020 | Approved | |
Invantive(R) Data Hub 20.0.117 | 44 | Friday, November 13, 2020 | Approved | |
Invantive(R) Data Hub 20.0.116 | 43 | Thursday, November 12, 2020 | Approved | |
Invantive(R) Data Hub 20.0.114 | 50 | Friday, November 6, 2020 | Approved | |
Invantive(R) Data Hub 20.0.113 | 49 | Friday, November 6, 2020 | Approved | |
Invantive(R) Data Hub 20.0.111 | 49 | Wednesday, November 4, 2020 | Approved | |
Invantive(R) Data Hub 20.0.110 | 42 | Monday, November 2, 2020 | Approved | |
Invantive(R) Data Hub 20.0.82 | 48 | Monday, August 31, 2020 | Approved | |
Invantive(R) Data Hub 20.0.79 | 48 | Thursday, August 27, 2020 | Approved | |
Invantive(R) Data Hub 20.0.76 | 55 | Tuesday, August 18, 2020 | Approved | |
Invantive(R) Data Hub 20.0.68 | 80 | Monday, August 17, 2020 | Approved | |
Invantive(R) Data Hub 20.0.65 | 43 | Friday, August 7, 2020 | Approved | |
Invantive(R) Data Hub 20.0.64 | 44 | Thursday, August 6, 2020 | Approved | |
Invantive(R) Data Hub 20.0.51 | 57 | Wednesday, August 5, 2020 | Approved | |
Invantive(R) Data Hub 20.0.50 | 60 | Tuesday, July 28, 2020 | Approved | |
Invantive(R) Data Hub 20.0.49 | 66 | Saturday, July 25, 2020 | Approved | |
Invantive(R) Data Hub 20.0.48 | 55 | Wednesday, July 8, 2020 | Approved | |
Invantive(R) Data Hub 20.0.44 | 55 | Thursday, July 2, 2020 | Approved | |
Invantive(R) Data Hub 20.0.43 | 62 | Friday, June 26, 2020 | Approved | |
Invantive(R) Data Hub 20.0.41 | 67 | Saturday, June 20, 2020 | Approved | |
Invantive(R) Data Hub 20.0.40 | 56 | Wednesday, June 17, 2020 | Approved | |
Invantive(R) Data Hub 20.0.37 | 78 | Tuesday, June 16, 2020 | Approved | |
Invantive(R) Data Hub 20.0.36 | 61 | Thursday, June 4, 2020 | Approved | |
Invantive(R) Data Hub 20.0.35 | 59 | Wednesday, June 3, 2020 | Approved | |
Invantive(R) Data Hub 20.0.34 | 80 | Tuesday, June 2, 2020 | Approved | |
Invantive(R) Data Hub 20.0.33 | 72 | Tuesday, May 26, 2020 | Approved | |
Invantive(R) Data Hub 20.0.28 | 73 | Friday, May 22, 2020 | Approved | |
Invantive(R) Data Hub 20.0.27 | 74 | Tuesday, May 19, 2020 | Approved | |
Invantive(R) Data Hub 20.0.25 | 67 | Monday, May 11, 2020 | Approved | |
Invantive(R) Data Hub 20.0.24 | 66 | Friday, May 8, 2020 | Approved | |
Invantive(R) Data Hub 20.0.23 | 98 | Thursday, May 7, 2020 | Approved | |
Invantive(R) Data Hub 20.0.22 | 79 | Sunday, May 3, 2020 | Approved | |
Invantive(R) Data Hub 20.0.21 | 62 | Sunday, May 3, 2020 | Approved | |
Invantive(R) Data Hub 20.0.20 | 70 | Sunday, May 3, 2020 | Approved | |
Invantive(R) Data Hub 20.0.19 | 71 | Sunday, May 3, 2020 | Approved | |
Invantive(R) Data Hub 20.0.18 | 61 | Sunday, May 3, 2020 | Approved | |
Invantive(R) Data Hub 20.0.14 | 94 | Tuesday, April 21, 2020 | Approved | |
Invantive(R) Data Hub 20.0.13 | 93 | Friday, April 17, 2020 | Approved | |
Invantive(R) Data Hub 20.0.12 | 72 | Tuesday, April 14, 2020 | Approved | |
Invantive(R) Data Hub 20.0.11 | 87 | Wednesday, April 8, 2020 | Approved | |
Invantive(R) Data Hub 20.0.9 | 90 | Sunday, April 5, 2020 | Approved | |
Invantive(R) Data Hub 20.0.8 | 82 | Saturday, April 4, 2020 | Approved | |
Invantive(R) Data Hub 20.0.7 | 84 | Friday, April 3, 2020 | Approved | |
Invantive(R) Data Hub 20.0.5 | 90 | Wednesday, April 1, 2020 | Approved | |
Invantive(R) Data Hub 20.0.3 | 78 | Monday, March 30, 2020 | Approved | |
Invantive(R) Data Hub 20.0.0 | 76 | Saturday, March 28, 2020 | Approved | |
Invantive(R) Data Hub 17.33.337-BETA | 71 | Friday, March 20, 2020 | Approved | |
Invantive(R) Data Hub 17.33.324-BETA | 77 | Thursday, March 12, 2020 | Approved | |
Invantive(R) Data Hub 17.33.322-BETA | 85 | Thursday, March 12, 2020 | Approved | |
Invantive(R) Data Hub 17.33.271-BETA | 76 | Tuesday, January 21, 2020 | Approved | |
Invantive(R) Data Hub 17.33.270-BETA | 93 | Friday, January 17, 2020 | Approved | |
Invantive(R) Data Hub 17.33.261-BETA | 93 | Friday, January 10, 2020 | Approved | |
Invantive(R) Data Hub 17.33.260-BETA | 88 | Wednesday, January 8, 2020 | Approved | |
Invantive(R) Data Hub 17.33.259-BETA | 76 | Saturday, January 4, 2020 | Approved | |
Invantive(R) Data Hub 17.33.258-BETA | 107 | Friday, January 3, 2020 | Approved | |
Invantive(R) Data Hub 17.33.256-BETA | 95 | Tuesday, December 24, 2019 | Approved | |
Invantive(R) Data Hub 17.33.251-BETA | 81 | Sunday, December 22, 2019 | Approved | |
Invantive(R) Data Hub 17.33.225-BETA | 104 | Friday, December 6, 2019 | Approved | |
Invantive(R) Data Hub 17.33.224-BETA | 80 | Thursday, December 5, 2019 | Approved | |
Invantive(R) Data Hub 17.33.223-BETA | 107 | Wednesday, December 4, 2019 | Approved | |
Invantive(R) Data Hub 17.33.217-BETA | 99 | Monday, December 2, 2019 | Approved | |
Invantive(R) Data Hub 17.33.216-BETA | 88 | Wednesday, November 27, 2019 | Approved | |
Invantive(R) Data Hub 17.33.215-BETA | 65 | Tuesday, November 26, 2019 | Approved | |
Invantive(R) Data Hub 17.33.213-BETA | 94 | Monday, November 25, 2019 | Approved | |
Invantive(R) Data Hub 17.33.207-BETA | 80 | Wednesday, November 20, 2019 | Approved | |
Invantive(R) Data Hub 17.33.206-BETA | 89 | Wednesday, November 20, 2019 | Approved | |
Invantive(R) Data Hub 17.33.205-BETA | 61 | Wednesday, November 20, 2019 | Approved | |
Invantive(R) Data Hub 17.33.198-BETA | 95 | Monday, November 18, 2019 | Approved | |
Invantive(R) Data Hub 17.33.196-BETA | 88 | Sunday, November 17, 2019 | Approved | |
Invantive(R) Data Hub 17.33.195-BETA | 86 | Saturday, November 16, 2019 | Approved | |
Invantive(R) Data Hub 17.33.194-BETA | 95 | Saturday, November 16, 2019 | Approved | |
Invantive(R) Data Hub 17.33.190-BETA | 103 | Tuesday, November 12, 2019 | Approved | |
Invantive(R) Data Hub 17.33.187-BETA | 105 | Friday, November 8, 2019 | Approved | |
Invantive(R) Data Hub 17.33.186-BETA | 117 | Tuesday, November 5, 2019 | Approved | |
Invantive(R) Data Hub 17.33.185-BETA | 89 | Tuesday, November 5, 2019 | Approved | |
Invantive(R) Data Hub 17.33.183-BETA | 92 | Friday, November 1, 2019 | Approved | |
Invantive(R) Data Hub 17.33.182-BETA | 76 | Friday, November 1, 2019 | Approved | |
Invantive(R) Data Hub 17.33.175-BETA | 75 | Tuesday, October 29, 2019 | Approved | |
Invantive(R) Data Hub 17.33.173-BETA | 88 | Wednesday, October 23, 2019 | Approved | |
Invantive(R) Data Hub 17.33.164-BETA | 78 | Wednesday, October 16, 2019 | Approved | |
Invantive(R) Data Hub 17.33.148-BETA | 76 | Monday, October 7, 2019 | Approved | |
Invantive(R) Data Hub 17.33.141-BETA | 95 | Friday, October 4, 2019 | Approved | |
Invantive(R) Data Hub 17.33.114-BETA | 74 | Monday, September 23, 2019 | Approved | |
Invantive(R) Data Hub 17.33.109-BETA | 80 | Monday, September 23, 2019 | Approved | |
Invantive(R) Data Hub 17.33.106-BETA | 92 | Tuesday, September 17, 2019 | Approved | |
Invantive(R) Data Hub 17.33.99-BETA | 87 | Thursday, September 12, 2019 | Approved | |
Invantive(R) Data Hub 17.33.92-BETA | 110 | Monday, September 9, 2019 | Approved | |
Invantive(R) Data Hub 17.33.91-BETA | 112 | Monday, September 9, 2019 | Approved | |
Invantive(R) Data Hub 17.33.90-BETA | 107 | Saturday, September 7, 2019 | Approved | |
Invantive(R) Data Hub 17.33.89-BETA | 110 | Tuesday, September 3, 2019 | Approved | |
Invantive(R) Data Hub 17.33.86-BETA | 107 | Tuesday, September 3, 2019 | Approved | |
Invantive(R) Data Hub 17.33.84-BETA | 122 | Saturday, August 31, 2019 | Approved | |
Invantive(R) Data Hub 17.33.83-BETA | 98 | Saturday, August 31, 2019 | Approved | |
Invantive(R) Data Hub 17.33.81-BETA | 112 | Wednesday, August 28, 2019 | Approved | |
Invantive(R) Data Hub 17.33.77-BETA | 119 | Friday, August 23, 2019 | Approved | |
Invantive(R) Data Hub 17.33.76-BETA | 78 | Thursday, August 22, 2019 | Approved | |
Invantive(R) Data Hub 17.33.71-BETA | 92 | Tuesday, August 13, 2019 | Approved | |
Invantive(R) Data Hub 17.33.67-BETA | 118 | Tuesday, August 6, 2019 | Approved | |
Invantive(R) Data Hub 17.33.63-BETA | 112 | Monday, July 8, 2019 | Approved | |
Invantive(R) Data Hub 17.33.49-BETA | 121 | Tuesday, June 25, 2019 | Approved | |
Invantive(R) Data Hub 17.33.46-BETA | 107 | Wednesday, June 19, 2019 | Approved | |
Invantive(R) Data Hub 17.33.5-BETA | 92 | Wednesday, June 12, 2019 | Approved | |
Invantive(R) Data Hub 17.32.273 | 21 | Thursday, August 5, 2021 | Approved | |
Invantive(R) Data Hub 17.32.270 | 36 | Tuesday, November 10, 2020 | Approved | |
Invantive(R) Data Hub 17.32.258 | 37 | Monday, August 31, 2020 | Approved | |
Invantive(R) Data Hub 17.32.257 | 43 | Monday, August 31, 2020 | Approved | |
Invantive(R) Data Hub 17.32.256 | 42 | Thursday, August 27, 2020 | Approved | |
Invantive(R) Data Hub 17.32.253 | 47 | Tuesday, August 18, 2020 | Approved | |
Invantive(R) Data Hub 17.32.252 | 47 | Monday, August 17, 2020 | Approved | |
Invantive(R) Data Hub 17.32.249 | 53 | Thursday, August 6, 2020 | Approved | |
Invantive(R) Data Hub 17.32.228 | 71 | Wednesday, July 8, 2020 | Approved | |
Invantive(R) Data Hub 17.32.227 | 55 | Monday, July 6, 2020 | Approved | |
Invantive(R) Data Hub 17.32.226 | 47 | Friday, June 26, 2020 | Approved | |
Invantive(R) Data Hub 17.32.224 | 62 | Friday, June 19, 2020 | Approved | |
Invantive(R) Data Hub 17.32.223 | 44 | Wednesday, June 17, 2020 | Approved | |
Invantive(R) Data Hub 17.32.220 | 83 | Tuesday, June 16, 2020 | Approved | |
Invantive(R) Data Hub 17.32.219 | 36 | Tuesday, June 9, 2020 | Approved | |
Invantive(R) Data Hub 17.32.218 | 45 | Tuesday, June 2, 2020 | Approved | |
Invantive(R) Data Hub 17.32.217 | 54 | Tuesday, May 26, 2020 | Approved | |
Invantive(R) Data Hub 17.32.216 | 42 | Friday, May 22, 2020 | Approved | |
Invantive(R) Data Hub 17.32.215 | 61 | Tuesday, May 19, 2020 | Approved | |
Invantive(R) Data Hub 17.32.214 | 60 | Monday, May 11, 2020 | Approved | |
Invantive(R) Data Hub 17.32.213 | 55 | Friday, May 8, 2020 | Approved | |
Invantive(R) Data Hub 17.32.212 | 79 | Friday, May 8, 2020 | Approved | |
Invantive(R) Data Hub 17.32.211 | 75 | Thursday, May 7, 2020 | Approved | |
Invantive(R) Data Hub 17.32.210 | 63 | Tuesday, April 21, 2020 | Approved | |
Invantive(R) Data Hub 17.32.209 | 48 | Friday, April 17, 2020 | Approved | |
Invantive(R) Data Hub 17.32.208 | 60 | Wednesday, April 8, 2020 | Approved | |
Invantive(R) Data Hub 17.32.205 | 63 | Saturday, April 4, 2020 | Approved | |
Invantive(R) Data Hub 17.32.203 | 84 | Friday, April 3, 2020 | Approved | |
Invantive(R) Data Hub 17.32.202 | 65 | Wednesday, April 1, 2020 | Approved | |
Invantive(R) Data Hub 17.32.199 | 86 | Friday, March 27, 2020 | Approved | |
Invantive(R) Data Hub 17.32.198 | 57 | Thursday, March 26, 2020 | Approved | |
Invantive(R) Data Hub 17.32.196 | 84 | Friday, March 20, 2020 | Approved | |
Invantive(R) Data Hub 17.32.192 | 68 | Friday, March 20, 2020 | Approved | |
Invantive(R) Data Hub 17.32.191 | 69 | Wednesday, March 18, 2020 | Approved | |
Invantive(R) Data Hub 17.32.190 | 77 | Wednesday, March 18, 2020 | Approved | |
Invantive(R) Data Hub 17.32.189 | 75 | Tuesday, March 17, 2020 | Approved | |
Invantive(R) Data Hub 17.32.188 | 103 | Tuesday, March 17, 2020 | Approved | |
Invantive(R) Data Hub 17.32.185 | 117 | Thursday, March 5, 2020 | Approved | |
Invantive(R) Data Hub 17.32.180 | 113 | Thursday, February 20, 2020 | Approved | |
Invantive(R) Data Hub 17.32.179 | 85 | Wednesday, February 19, 2020 | Approved | |
Invantive(R) Data Hub 17.32.171 | 97 | Monday, February 10, 2020 | Approved | |
Invantive(R) Data Hub 17.32.170 | 103 | Saturday, February 8, 2020 | Approved | |
Invantive(R) Data Hub 17.32.169 | 82 | Friday, February 7, 2020 | Approved | |
Invantive(R) Data Hub 17.32.167 | 70 | Saturday, February 1, 2020 | Approved | |
Invantive(R) Data Hub 17.32.165 | 76 | Thursday, January 30, 2020 | Approved | |
Invantive(R) Data Hub 17.32.162 | 85 | Friday, January 24, 2020 | Approved | |
Invantive(R) Data Hub 17.32.161 | 79 | Friday, January 24, 2020 | Approved | |
Invantive(R) Data Hub 17.32.160 | 75 | Tuesday, January 21, 2020 | Approved | |
Invantive(R) Data Hub 17.32.159 | 75 | Thursday, January 16, 2020 | Approved | |
Invantive(R) Data Hub 17.32.153 | 87 | Thursday, January 9, 2020 | Approved | |
Invantive(R) Data Hub 17.32.147 | 94 | Saturday, January 4, 2020 | Approved | |
Invantive(R) Data Hub 17.32.145 | 83 | Thursday, January 2, 2020 | Approved | |
Invantive(R) Data Hub 17.32.143 | 84 | Tuesday, December 24, 2019 | Approved | |
Invantive(R) Data Hub 17.32.139 | 71 | Wednesday, December 18, 2019 | Approved | |
Invantive(R) Data Hub 17.32.138 | 83 | Tuesday, December 17, 2019 | Approved | |
Invantive(R) Data Hub 17.32.129 | 72 | Tuesday, December 10, 2019 | Approved | |
Invantive(R) Data Hub 17.32.127 | 68 | Wednesday, December 4, 2019 | Approved | |
Invantive(R) Data Hub 17.32.126 | 83 | Monday, December 2, 2019 | Approved | |
Invantive(R) Data Hub 17.32.125 | 92 | Wednesday, November 27, 2019 | Approved | |
Invantive(R) Data Hub 17.32.124 | 73 | Wednesday, November 27, 2019 | Approved | |
Invantive(R) Data Hub 17.32.123 | 85 | Wednesday, November 20, 2019 | Approved | |
Invantive(R) Data Hub 17.32.122 | 70 | Wednesday, November 20, 2019 | Approved | |
Invantive(R) Data Hub 17.32.121 | 84 | Saturday, November 16, 2019 | Approved | |
Invantive(R) Data Hub 17.32.119 | 98 | Saturday, November 16, 2019 | Approved | |
Invantive(R) Data Hub 17.32.118 | 85 | Thursday, November 14, 2019 | Approved | |
Invantive(R) Data Hub 17.32.115 | 80 | Wednesday, November 13, 2019 | Approved | |
Invantive(R) Data Hub 17.32.113 | 82 | Tuesday, November 12, 2019 | Approved | |
Invantive(R) Data Hub 17.32.111 | 96 | Friday, November 8, 2019 | Approved | |
Invantive(R) Data Hub 17.32.110 | 101 | Friday, November 8, 2019 | Approved | |
Invantive(R) Data Hub 17.32.109 | 75 | Tuesday, November 5, 2019 | Approved | |
Invantive(R) Data Hub 17.32.108 | 90 | Monday, November 4, 2019 | Approved | |
Invantive(R) Data Hub 17.32.107 | 78 | Monday, November 4, 2019 | Approved | |
Invantive(R) Data Hub 17.32.106 | 68 | Monday, November 4, 2019 | Approved | |
Invantive(R) Data Hub 17.32.103 | 91 | Friday, November 1, 2019 | Approved | |
Invantive(R) Data Hub 17.32.101 | 111 | Friday, November 1, 2019 | Approved | |
Invantive(R) Data Hub 17.32.100 | 87 | Thursday, October 31, 2019 | Approved | |
Invantive(R) Data Hub 17.32.99 | 105 | Thursday, October 31, 2019 | Approved | |
Invantive(R) Data Hub 17.32.98 | 81 | Wednesday, October 30, 2019 | Approved | |
Invantive(R) Data Hub 17.32.95 | 91 | Tuesday, October 29, 2019 | Approved | |
Invantive(R) Data Hub 17.32.94 | 90 | Monday, October 28, 2019 | Approved | |
Invantive(R) Data Hub 17.32.93 | 95 | Wednesday, October 23, 2019 | Approved | |
Invantive(R) Data Hub 17.32.92 | 78 | Wednesday, October 23, 2019 | Approved | |
Invantive(R) Data Hub 17.32.90 | 98 | Saturday, October 19, 2019 | Approved | |
Invantive(R) Data Hub 17.32.89 | 82 | Thursday, October 17, 2019 | Approved | |
Invantive(R) Data Hub 17.32.88 | 87 | Thursday, October 17, 2019 | Approved | |
Invantive(R) Data Hub 17.32.84 | 98 | Wednesday, October 16, 2019 | Approved | |
Invantive(R) Data Hub 17.32.81 | 71 | Tuesday, October 15, 2019 | Approved | |
Invantive(R) Data Hub 17.32.80 | 83 | Saturday, October 12, 2019 | Approved | |
Invantive(R) Data Hub 17.32.79 | 75 | Wednesday, October 9, 2019 | Approved | |
Invantive(R) Data Hub 17.32.78 | 86 | Tuesday, October 8, 2019 | Approved | |
Invantive(R) Data Hub 17.32.77 | 91 | Monday, October 7, 2019 | Approved | |
Invantive(R) Data Hub 17.32.76 | 116 | Friday, October 4, 2019 | Approved | |
Invantive(R) Data Hub 17.32.73 | 108 | Tuesday, September 24, 2019 | Approved | |
Invantive(R) Data Hub 17.32.72 | 76 | Tuesday, September 24, 2019 | Approved | |
Invantive(R) Data Hub 17.32.71 | 84 | Monday, September 23, 2019 | Approved | |
Invantive(R) Data Hub 17.32.70 | 120 | Saturday, September 14, 2019 | Approved | |
Invantive(R) Data Hub 17.32.69 | 99 | Thursday, September 12, 2019 | Approved | |
Invantive(R) Data Hub 17.32.68 | 80 | Wednesday, September 11, 2019 | Approved | |
Invantive(R) Data Hub 17.32.65 | 130 | Saturday, September 7, 2019 | Approved | |
Invantive(R) Data Hub 17.32.64 | 84 | Saturday, September 7, 2019 | Approved | |
Invantive(R) Data Hub 17.32.63 | 102 | Tuesday, September 3, 2019 | Approved | |
Invantive(R) Data Hub 17.32.58 | 113 | Monday, August 26, 2019 | Approved | |
Invantive(R) Data Hub 17.32.57 | 93 | Friday, August 23, 2019 | Approved | |
Invantive(R) Data Hub 17.32.56 | 106 | Thursday, August 22, 2019 | Approved | |
Invantive(R) Data Hub 17.32.55 | 104 | Wednesday, August 21, 2019 | Approved | |
Invantive(R) Data Hub 17.32.52 | 126 | Tuesday, August 13, 2019 | Approved | |
Invantive(R) Data Hub 17.32.49 | 110 | Thursday, August 8, 2019 | Approved | |
Invantive(R) Data Hub 17.32.48 | 96 | Tuesday, August 6, 2019 | Approved | |
Invantive(R) Data Hub 17.32.47 | 113 | Tuesday, July 9, 2019 | Approved | |
Invantive(R) Data Hub 17.32.46 | 110 | Saturday, July 6, 2019 | Approved | |
Invantive(R) Data Hub 17.32.45 | 90 | Thursday, July 4, 2019 | Approved | |
Invantive(R) Data Hub 17.32.43 | 123 | Tuesday, July 2, 2019 | Approved | |
Invantive(R) Data Hub 17.32.41 | 119 | Friday, June 28, 2019 | Approved | |
Invantive(R) Data Hub 17.32.36 | 128 | Monday, June 24, 2019 | Approved | |
Invantive(R) Data Hub 17.32.35 | 111 | Monday, June 24, 2019 | Approved | |
Invantive(R) Data Hub 17.32.34 | 101 | Sunday, June 23, 2019 | Approved | |
Invantive(R) Data Hub 17.32.33 | 95 | Saturday, June 22, 2019 | Approved | |
Invantive(R) Data Hub 17.32.31 | 124 | Friday, June 21, 2019 | Approved | |
Invantive(R) Data Hub 17.32.30 | 112 | Wednesday, June 19, 2019 | Approved | |
Invantive(R) Data Hub 17.32.29 | 117 | Wednesday, June 19, 2019 | Approved | |
Invantive(R) Data Hub 17.32.28 | 94 | Tuesday, June 18, 2019 | Approved | |
Invantive(R) Data Hub 17.32.27 | 102 | Tuesday, June 18, 2019 | Approved | |
Invantive(R) Data Hub 17.32.25 | 123 | Tuesday, June 18, 2019 | Approved | |
Invantive(R) Data Hub 17.32.23 | 125 | Monday, June 17, 2019 | Approved | |
Invantive(R) Data Hub 17.32.21 | 98 | Monday, June 17, 2019 | Approved | |
Invantive(R) Data Hub 17.32.20 | 90 | Friday, June 14, 2019 | Approved | |
Invantive(R) Data Hub 17.32.19 | 86 | Friday, June 14, 2019 | Approved | |
Invantive(R) Data Hub 17.32.15 | 115 | Monday, June 10, 2019 | Approved | |
Invantive(R) Data Hub 17.32.14 | 108 | Saturday, June 8, 2019 | Approved | |
Invantive(R) Data Hub 17.31.81-BETA | 103 | Friday, April 19, 2019 | Approved | |
Invantive(R) Data Hub 17.31.80-BETA | 115 | Wednesday, April 17, 2019 | Approved | |
Invantive(R) Data Hub 17.31.78-BETA | 105 | Tuesday, April 16, 2019 | Approved | |
Invantive(R) Data Hub 17.31.77-BETA | 114 | Monday, April 15, 2019 | Approved | |
Invantive(R) Data Hub 17.31.76-BETA | 118 | Monday, April 15, 2019 | Approved | |
Invantive(R) Data Hub 17.31.75-BETA | 123 | Monday, April 15, 2019 | Approved | |
Invantive(R) Data Hub 17.31.74-BETA | 134 | Wednesday, April 10, 2019 | Approved | |
Invantive(R) Data Hub 17.31.73-BETA | 143 | Tuesday, April 9, 2019 | Approved | |
Invantive(R) Data Hub 17.31.72-BETA | 113 | Monday, April 8, 2019 | Approved | |
Invantive(R) Data Hub 17.31.70-BETA | 125 | Monday, April 1, 2019 | Approved | |
Invantive(R) Data Hub 17.31.69-BETA | 121 | Thursday, March 28, 2019 | Approved | |
Invantive(R) Data Hub 17.31.68-BETA | 109 | Wednesday, March 27, 2019 | Approved | |
Invantive(R) Data Hub 17.31.67-BETA | 117 | Tuesday, March 26, 2019 | Approved | |
Invantive(R) Data Hub 17.31.66-BETA | 133 | Monday, March 25, 2019 | Approved | |
Invantive(R) Data Hub 17.31.65-BETA | 101 | Sunday, March 24, 2019 | Approved | |
Invantive(R) Data Hub 17.31.64-BETA | 116 | Friday, March 22, 2019 | Approved | |
Invantive(R) Data Hub 17.31.63-BETA | 123 | Friday, March 22, 2019 | Approved | |
Invantive(R) Data Hub 17.31.62-BETA | 131 | Friday, March 22, 2019 | Approved | |
Invantive(R) Data Hub 17.31.61-BETA | 117 | Wednesday, March 20, 2019 | Approved | |
Invantive(R) Data Hub 17.31.60-BETA | 125 | Wednesday, March 20, 2019 | Approved | |
Invantive(R) Data Hub 17.31.59-BETA | 121 | Tuesday, March 19, 2019 | Approved | |
Invantive(R) Data Hub 17.31.58-BETA | 140 | Monday, March 18, 2019 | Approved | |
Invantive(R) Data Hub 17.31.57-BETA | 100 | Monday, March 18, 2019 | Approved | |
Invantive(R) Data Hub 17.31.41-BETA | 143 | Saturday, March 16, 2019 | Approved | |
Invantive(R) Data Hub 17.31.40-BETA | 123 | Thursday, March 14, 2019 | Approved | |
Invantive(R) Data Hub 17.31.39-BETA | 152 | Wednesday, March 13, 2019 | Approved | |
Invantive(R) Data Hub 17.31.38-BETA | 131 | Monday, March 11, 2019 | Approved | |
Invantive(R) Data Hub 17.31.37-BETA | 122 | Friday, March 8, 2019 | Approved | |
Invantive(R) Data Hub 17.31.36-BETA | 113 | Wednesday, March 6, 2019 | Approved | |
Invantive(R) Data Hub 17.31.35-BETA | 151 | Monday, March 4, 2019 | Approved | |
Invantive(R) Data Hub 17.31.34-BETA | 136 | Thursday, February 21, 2019 | Approved | |
Invantive(R) Data Hub 17.31.33-BETA | 130 | Thursday, February 21, 2019 | Approved | |
Invantive(R) Data Hub 17.31.32-BETA | 154 | Thursday, February 21, 2019 | Approved | |
Invantive(R) Data Hub 17.31.31-BETA | 133 | Wednesday, February 20, 2019 | Approved | |
Invantive(R) Data Hub 17.31.30-BETA | 151 | Wednesday, February 20, 2019 | Approved | |
Invantive(R) Data Hub 17.31.29-BETA | 146 | Monday, February 18, 2019 | Approved | |
Invantive(R) Data Hub 17.31.28-BETA | 136 | Sunday, February 17, 2019 | Approved | |
Invantive(R) Data Hub 17.31.27-BETA | 117 | Friday, February 15, 2019 | Approved | |
Invantive(R) Data Hub 17.31.26-BETA | 129 | Tuesday, February 12, 2019 | Approved | |
Invantive(R) Data Hub 17.31.25-BETA | 136 | Thursday, February 7, 2019 | Approved | |
Invantive(R) Data Hub 17.31.24-BETA | 168 | Tuesday, February 5, 2019 | Approved | |
Invantive(R) Data Hub 17.31.23-BETA | 133 | Tuesday, February 5, 2019 | Approved | |
Invantive(R) Data Hub 17.31.22-BETA | 128 | Friday, February 1, 2019 | Approved | |
Invantive(R) Data Hub 17.31.21-BETA | 144 | Friday, February 1, 2019 | Approved | |
Invantive(R) Data Hub 17.31.20-BETA | 122 | Thursday, January 31, 2019 | Approved | |
Invantive(R) Data Hub 17.31.19-BETA | 126 | Wednesday, January 30, 2019 | Approved | |
Invantive(R) Data Hub 17.31.18-BETA | 147 | Wednesday, January 30, 2019 | Approved | |
Invantive(R) Data Hub 17.31.17-BETA | 128 | Tuesday, January 29, 2019 | Approved | |
Invantive(R) Data Hub 17.31.15-BETA | 153 | Tuesday, January 29, 2019 | Approved | |
Invantive(R) Data Hub 17.31.14-BETA | 127 | Monday, January 28, 2019 | Approved | |
Invantive(R) Data Hub 17.31.13-BETA | 152 | Saturday, January 26, 2019 | Approved | |
Invantive(R) Data Hub 17.31.12-BETA | 147 | Friday, January 25, 2019 | Approved | |
Invantive(R) Data Hub 17.31.11-BETA | 116 | Thursday, January 24, 2019 | Approved | |
Invantive(R) Data Hub 17.31.10-BETA | 112 | Wednesday, January 23, 2019 | Approved | |
Invantive(R) Data Hub 17.31.9-BETA | 104 | Tuesday, January 22, 2019 | Approved | |
Invantive(R) Data Hub 17.31.6-BETA | 147 | Monday, January 21, 2019 | Approved | |
Invantive(R) Data Hub 17.31.5-BETA | 155 | Monday, January 21, 2019 | Approved | |
Invantive(R) Data Hub 17.31.1-BETA | 118 | Friday, January 18, 2019 | Approved | |
Invantive(R) Data Hub 17.31.0-BETA | 155 | Thursday, January 17, 2019 | Approved | |
Invantive(R) Data Hub 17.30.0 | 164 | Thursday, January 10, 2019 | Approved | |
Invantive(R) Data Hub 17.29.55-BETA | 140 | Wednesday, January 9, 2019 | Approved | |
Invantive(R) Data Hub 17.29.54-BETA | 128 | Wednesday, January 9, 2019 | Approved | |
Invantive(R) Data Hub 17.29.53-BETA | 129 | Monday, January 7, 2019 | Approved | |
Invantive(R) Data Hub 17.29.52-BETA | 144 | Wednesday, January 2, 2019 | Approved | |
Invantive(R) Data Hub 17.29.51-BETA | 143 | Monday, December 31, 2018 | Approved | |
Invantive(R) Data Hub 17.29.50-BETA | 159 | Friday, December 28, 2018 | Approved | |
Invantive Data Hub 17.29.49-BETA | 143 | Monday, December 24, 2018 | Approved | |
Invantive Data Hub 17.29.48-BETA | 147 | Friday, December 21, 2018 | Approved | |
Invantive Data Hub 17.29.47-BETA | 139 | Friday, December 21, 2018 | Approved | |
Invantive Data Hub 17.29.46-BETA | 147 | Thursday, December 20, 2018 | Approved | |
Invantive Data Hub 17.29.45-BETA | 146 | Wednesday, December 19, 2018 | Approved | |
Invantive Data Hub 17.29.44-BETA | 121 | Tuesday, December 18, 2018 | Approved | |
Invantive Data Hub 17.29.43-BETA | 116 | Tuesday, December 18, 2018 | Approved | |
Invantive Data Hub 17.29.42-BETA | 124 | Saturday, December 15, 2018 | Approved | |
Invantive Data Hub 17.29.41-BETA | 120 | Saturday, December 15, 2018 | Approved | |
Invantive Data Hub 17.29.40-BETA | 114 | Wednesday, December 12, 2018 | Approved | |
Invantive Data Hub 17.29.39-BETA | 90 | Wednesday, December 12, 2018 | Approved | |
Invantive Data Hub 17.29.38-BETA | 111 | Tuesday, December 11, 2018 | Approved | |
Invantive Data Hub 17.29.37-BETA | 107 | Tuesday, December 11, 2018 | Approved | |
Invantive Data Hub 17.29.36-BETA | 123 | Monday, December 10, 2018 | Approved | |
Invantive Data Hub 17.29.35-BETA | 134 | Friday, December 7, 2018 | Approved | |
Invantive Data Hub 17.29.34-BETA | 116 | Thursday, December 6, 2018 | Approved | |
Invantive Data Hub 17.29.33-BETA | 141 | Wednesday, December 5, 2018 | Approved | |
Invantive Data Hub 17.29.31-BETA | 134 | Sunday, December 2, 2018 | Approved | |
Invantive Data Hub 17.29.30-BETA | 123 | Saturday, December 1, 2018 | Approved | |
Invantive Data Hub 17.29.29-BETA | 121 | Friday, November 30, 2018 | Approved | |
Invantive Data Hub 17.29.28-BETA | 137 | Tuesday, November 27, 2018 | Approved | |
Invantive Data Hub 17.29.27-BETA | 122 | Saturday, November 24, 2018 | Approved | |
Invantive Data Hub 17.29.26-BETA | 126 | Thursday, November 22, 2018 | Approved | |
Invantive Data Hub 17.29.25-BETA | 147 | Tuesday, November 20, 2018 | Approved | |
Invantive Data Hub 17.29.24-BETA | 112 | Monday, November 19, 2018 | Approved | |
Invantive Data Hub 17.29.23-BETA | 120 | Monday, November 19, 2018 | Approved | |
Invantive Data Hub 17.29.22-BETA | 133 | Friday, November 16, 2018 | Approved | |
Invantive Data Hub 17.29.21-BETA | 141 | Friday, November 16, 2018 | Approved | |
Invantive Data Hub 17.29.20-BETA | 125 | Monday, November 12, 2018 | Approved | |
Invantive Data Hub 17.29.19-BETA | 130 | Monday, November 12, 2018 | Approved | |
Invantive Data Hub 17.29.18-BETA | 135 | Monday, November 12, 2018 | Approved | |
Invantive Data Hub 17.29.17-BETA | 134 | Monday, November 12, 2018 | Approved | |
Invantive Data Hub 17.29.16-BETA | 129 | Saturday, November 10, 2018 | Approved | |
Invantive Data Hub 17.29.15-BETA | 122 | Wednesday, November 7, 2018 | Approved | |
Invantive Data Hub 17.29.14-BETA | 126 | Tuesday, November 6, 2018 | Approved | |
Invantive Data Hub 17.29.13-BETA | 134 | Tuesday, November 6, 2018 | Approved | |
Invantive Data Hub 17.29.12-BETA | 102 | Sunday, November 4, 2018 | Approved | |
Invantive Data Hub 17.29.11-BETA | 117 | Saturday, November 3, 2018 | Approved | |
Invantive Data Hub 17.29.10-BETA | 124 | Friday, November 2, 2018 | Approved | |
Invantive Data Hub 17.29.8-BETA | 132 | Thursday, November 1, 2018 | Approved | |
Invantive Data Hub 17.29.7-BETA | 149 | Wednesday, October 31, 2018 | Approved | |
Invantive Data Hub 17.29.5-BETA | 138 | Wednesday, October 31, 2018 | Approved | |
Invantive Data Hub 17.29.4-BETA | 145 | Wednesday, October 31, 2018 | Approved | |
Invantive Data Hub 17.29.2-BETA | 181 | Tuesday, October 30, 2018 | Approved | |
Invantive Data Hub 17.29.0-BETA | 135 | Tuesday, October 30, 2018 | Approved | |
Invantive Data Hub 17.28.4 | 131 | Thursday, October 25, 2018 | Approved | |
Invantive Data Hub 17.28.3 | 125 | Thursday, October 25, 2018 | Approved | |
Invantive Data Hub 17.28.2 | 127 | Thursday, October 25, 2018 | Approved | |
Invantive Data Hub 17.28.1 | 125 | Thursday, October 25, 2018 | Approved | |
Invantive Data Hub 17.28.0 | 135 | Monday, October 22, 2018 | Approved | |
Invantive Data Hub 17.27.37-BETA | 142 | Friday, October 19, 2018 | Approved | |
Invantive Data Hub 17.27.36-BETA | 132 | Friday, October 19, 2018 | Approved | |
Invantive Data Hub 17.27.35-BETA | 137 | Friday, October 19, 2018 | Approved | |
Invantive Data Hub 17.27.34-BETA | 139 | Thursday, October 18, 2018 | Approved | |
Invantive Data Hub 17.27.32-BETA | 149 | Wednesday, October 17, 2018 | Approved | |
Invantive Data Hub 17.27.31-BETA | 159 | Wednesday, October 17, 2018 | Approved | |
Invantive Data Hub 17.27.30-BETA | 130 | Wednesday, October 17, 2018 | Approved | |
Invantive Data Hub 17.27.29-BETA | 149 | Wednesday, October 17, 2018 | Approved | |
Invantive Data Hub 17.27.28-BETA | 186 | Wednesday, October 17, 2018 | Approved | |
Invantive Data Hub 17.27.27-BETA | 135 | Saturday, October 13, 2018 | Approved | |
Invantive Data Hub 17.27.26-BETA | 139 | Thursday, October 11, 2018 | Approved | |
Invantive Data Hub 17.27.25-BETA | 130 | Wednesday, October 10, 2018 | Exempted | |
Invantive Data Hub 17.27.24-BETA | 132 | Tuesday, October 9, 2018 | Approved | |
Invantive Data Hub 17.27.23-BETA | 127 | Monday, October 8, 2018 | Approved | |
Invantive Data Hub 17.27.22-BETA | 133 | Saturday, October 6, 2018 | Approved | |
Invantive Data Hub 17.27.21-BETA | 149 | Saturday, October 6, 2018 | Approved | |
Invantive Data Hub 17.27.20-BETA | 149 | Friday, October 5, 2018 | Approved | |
Invantive Data Hub 17.27.19-BETA | 127 | Wednesday, October 3, 2018 | Exempted | |
Invantive Data Hub 17.27.18-BETA | 151 | Monday, October 1, 2018 | Approved | |
Invantive Data Hub 17.27.16-BETA | 161 | Wednesday, September 26, 2018 | Approved | |
Invantive Data Hub 17.27.15-BETA | 154 | Monday, September 24, 2018 | Approved | |
Invantive Data Hub 17.27.14-BETA | 158 | Friday, September 21, 2018 | Approved | |
Invantive Data Hub 17.27.13-BETA | 139 | Wednesday, September 19, 2018 | Approved | |
Invantive Data Hub 17.27.12-BETA | 130 | Sunday, September 16, 2018 | Approved | |
Invantive Data Hub 17.27.11-BETA | 131 | Thursday, September 13, 2018 | Approved | |
Invantive Data Hub 17.27.10-BETA | 134 | Wednesday, September 12, 2018 | Approved | |
Invantive Data Hub 17.26.3 | 126 | Saturday, September 8, 2018 | Approved | |
Invantive Data Hub 17.26.2 | 138 | Thursday, September 6, 2018 | Approved | |
Invantive Data Hub 17.26.1 | 126 | Wednesday, September 5, 2018 | Approved | |
Invantive Data Hub 17.26.0 | 146 | Monday, September 3, 2018 | Approved | |
Invantive Data Hub 17.25.14-BETA | 147 | Thursday, August 30, 2018 | Approved | |
Invantive Data Hub 17.25.13-BETA | 156 | Tuesday, August 28, 2018 | Approved | |
Invantive Data Hub 17.25.12-BETA | 123 | Monday, August 27, 2018 | Approved | |
Invantive Data Hub 17.25.11-BETA | 130 | Monday, August 27, 2018 | Approved | |
Invantive Data Hub 17.25.10-BETA | 156 | Friday, August 24, 2018 | Approved | |
Invantive Data Hub 17.25.9-BETA | 131 | Wednesday, August 22, 2018 | Approved | |
Invantive Data Hub 17.25.8-BETA | 163 | Tuesday, August 21, 2018 | Exempted | |
Invantive Data Hub 17.25.7-BETA | 169 | Tuesday, August 21, 2018 | Approved | |
Invantive Data Hub 17.25.6-BETA | 131 | Monday, August 20, 2018 | Approved | |
Invantive Data Hub 17.25.5-BETA | 135 | Wednesday, August 15, 2018 | Approved | |
Invantive Data Hub 17.25.4-BETA | 164 | Tuesday, August 14, 2018 | Approved | |
Invantive Data Hub 17.25.3-BETA | 147 | Tuesday, August 14, 2018 | Approved | |
Invantive Data Hub 17.25.2-BETA | 185 | Monday, August 13, 2018 | Approved | |
Invantive Data Hub 17.25.1-BETA | 138 | Friday, August 10, 2018 | Approved | |
Invantive Data Hub 17.25.0-BETA | 169 | Sunday, July 15, 2018 | Approved | |
Invantive Data Hub 17.24.19-BETA | 156 | Saturday, July 14, 2018 | Approved | |
Invantive Data Hub 17.24.18 | 182 | Wednesday, July 11, 2018 | Approved | |
Invantive Data Hub 17.24.17 | 160 | Tuesday, July 10, 2018 | Approved | |
Invantive Data Hub 17.24.16 | 190 | Monday, July 9, 2018 | Approved | |
Invantive Data Hub 17.24.15 | 178 | Sunday, July 8, 2018 | Approved | |
Invantive Data Hub 17.24.14 | 165 | Friday, July 6, 2018 | Approved | |
Invantive Data Hub 17.24.13 | 169 | Tuesday, July 3, 2018 | Approved | |
Invantive Data Hub 17.24.12 | 167 | Monday, July 2, 2018 | Approved | |
Invantive Data Hub 17.24.11 | 171 | Wednesday, June 27, 2018 | Approved | |
Invantive Data Hub 17.24.10 | 173 | Tuesday, June 26, 2018 | Approved | |
Invantive Data Hub 17.24.9-BETA | 161 | Monday, June 25, 2018 | Approved | |
Invantive Data Hub 17.24.8 | 168 | Sunday, June 24, 2018 | Approved | |
Invantive Data Hub 17.24.7-BETA | 181 | Friday, June 22, 2018 | Approved | |
Invantive Data Hub 17.24.6 | 198 | Tuesday, June 19, 2018 | Approved | |
Invantive Data Hub 17.24.5 | 171 | Tuesday, June 19, 2018 | Approved | |
Invantive Data Hub 17.24.4-BETA | 156 | Tuesday, June 19, 2018 | Approved | |
Invantive Data Hub 17.24.2 | 183 | Friday, June 15, 2018 | Approved | |
Invantive Data Hub 17.24.1 | 177 | Thursday, June 14, 2018 | Approved | |
Invantive Data Hub 17.24.0 | 190 | Thursday, June 14, 2018 | Approved | |
Invantive Data Hub 17.23.55-BETA | 174 | Wednesday, June 13, 2018 | Approved | |
Invantive Data Hub 17.23.54-BETA | 160 | Wednesday, June 13, 2018 | Approved | |
Invantive Data Hub 17.23.53-BETA | 168 | Tuesday, June 12, 2018 | Approved | |
Invantive Data Hub 17.23.52-BETA | 156 | Monday, June 11, 2018 | Approved | |
Invantive Data Hub 17.23.51-BETA | 151 | Monday, June 11, 2018 | Approved | |
Invantive Data Hub 17.23.50-BETA | 191 | Monday, June 11, 2018 | Approved | |
Invantive Data Hub 17.23.49-BETA | 169 | Friday, June 8, 2018 | Approved | |
Invantive Data Hub 17.23.48-BETA | 178 | Thursday, June 7, 2018 | Approved | |
Invantive Data Hub 17.23.47-BETA | 185 | Tuesday, June 5, 2018 | Approved | |
Invantive Data Hub 17.23.46-BETA | 154 | Tuesday, June 5, 2018 | Approved | |
Invantive Data Hub 17.23.45-BETA | 174 | Monday, June 4, 2018 | Approved | |
Invantive Data Hub 17.23.44-BETA | 184 | Sunday, June 3, 2018 | Approved | |
Invantive Data Hub 17.23.43-BETA | 164 | Friday, June 1, 2018 | Approved | |
Invantive Data Hub 17.23.42-BETA | 195 | Monday, May 28, 2018 | Approved | |
Invantive Data Hub 17.23.41-BETA | 216 | Monday, May 28, 2018 | Approved | |
Invantive Data Hub 17.23.40-BETA | 192 | Friday, May 25, 2018 | Approved | |
Invantive Data Hub 17.23.39-BETA | 179 | Wednesday, May 23, 2018 | Approved | |
Invantive Data Hub 17.23.37-BETA | 186 | Wednesday, May 23, 2018 | Approved | |
Invantive Data Hub 17.23.36-BETA | 197 | Tuesday, May 22, 2018 | Approved | |
Invantive Data Hub 17.23.35-BETA | 199 | Tuesday, May 22, 2018 | Approved | |
Invantive Data Hub 17.23.34-BETA | 181 | Sunday, May 20, 2018 | Approved | |
Invantive Data Hub 17.23.33-BETA | 198 | Friday, May 18, 2018 | Approved | |
Invantive Data Hub 17.23.31-BETA | 177 | Thursday, May 17, 2018 | Approved | |
Invantive Data Hub 17.23.30-BETA | 191 | Wednesday, May 16, 2018 | Approved | |
Invantive Data Hub 17.23.29-BETA | 194 | Monday, May 14, 2018 | Approved | |
Invantive Data Hub 17.23.28-BETA | 191 | Friday, May 11, 2018 | Approved | |
Invantive Data Hub 17.23.27-BETA | 200 | Thursday, May 10, 2018 | Approved | |
Invantive Data Hub 17.23.26-BETA | 194 | Wednesday, May 9, 2018 | Approved | |
Invantive Data Hub 17.23.25-BETA | 202 | Tuesday, May 8, 2018 | Approved | |
Invantive Data Hub 17.23.24-BETA | 201 | Monday, May 7, 2018 | Approved | |
Invantive Data Hub 17.23.23-BETA | 185 | Thursday, May 3, 2018 | Approved | |
Invantive Data Hub 17.23.22-BETA | 220 | Wednesday, May 2, 2018 | Approved | |
Invantive Data Hub 17.23.20-BETA | 210 | Wednesday, May 2, 2018 | Approved | |
Invantive Data Hub 17.23.19-BETA | 235 | Tuesday, May 1, 2018 | Approved | |
Invantive Data Hub 17.23.18-BETA | 202 | Tuesday, May 1, 2018 | Approved | |
Invantive Data Hub 17.23.17-BETA | 203 | Monday, April 30, 2018 | Approved | |
Invantive Data Hub 17.23.16-BETA | 203 | Sunday, April 29, 2018 | Approved | |
Invantive Data Hub 17.23.15-BETA | 207 | Sunday, April 29, 2018 | Approved | |
Invantive Data Hub 17.23.14-BETA | 212 | Sunday, April 29, 2018 | Approved | |
Invantive Data Hub 17.23.13-BETA | 182 | Saturday, April 28, 2018 | Approved | |
Invantive Data Hub 17.23.12-BETA | 208 | Thursday, April 26, 2018 | Approved | |
Invantive Data Hub 17.23.11-BETA | 217 | Thursday, April 26, 2018 | Approved | |
Invantive Data Hub 17.23.10-BETA | 190 | Wednesday, April 25, 2018 | Approved | |
Invantive Data Hub 17.23.8-BETA | 234 | Tuesday, April 24, 2018 | Approved | |
Invantive Data Hub 17.23.7-BETA | 199 | Monday, April 23, 2018 | Approved | |
Invantive Data Hub 17.23.6-BETA | 225 | Friday, April 20, 2018 | Approved | |
Invantive Data Hub 17.23.5-BETA | 201 | Thursday, April 19, 2018 | Approved | |
Invantive Data Hub 17.23.4-BETA | 184 | Thursday, April 19, 2018 | Approved | |
Invantive Data Hub 17.23.3-BETA | 211 | Friday, April 13, 2018 | Approved | |
Invantive Data Hub 17.23.1-BETA | 209 | Thursday, April 12, 2018 | Approved | |
Invantive Data Hub 17.23.0-BETA | 250 | Thursday, April 12, 2018 | Approved | |
Invantive Data Hub 17.20.0 | 240 | Tuesday, April 10, 2018 | Approved | |
Invantive Data Hub 17.15.0 | 236 | Monday, April 9, 2018 | Approved | |
Invantive Data Hub 17.14.29-BETA | 215 | Monday, April 9, 2018 | Approved | |
Invantive Data Hub 17.14.28-BETA | 229 | Monday, April 9, 2018 | Approved | |
Invantive Data Hub 17.14.26-BETA | 206 | Friday, April 6, 2018 | Approved | |
Invantive Data Hub 17.14.25-BETA | 232 | Thursday, April 5, 2018 | Approved | |
Invantive Data Hub 17.14.24-BETA | 222 | Thursday, April 5, 2018 | Approved | |
Invantive Data Hub 17.14.22-BETA | 246 | Friday, March 30, 2018 | Approved | |
Invantive Data Hub 17.14.21-BETA | 243 | Thursday, March 29, 2018 | Approved | |
Invantive Data Hub 17.14.20-BETA | 213 | Wednesday, March 28, 2018 | Approved | |
Invantive Data Hub 17.14.19-BETA | 207 | Wednesday, March 28, 2018 | Approved | |
Invantive Data Hub 17.14.18-BETA | 213 | Tuesday, March 27, 2018 | Approved | |
Invantive Data Hub 17.14.17-BETA | 211 | Friday, March 23, 2018 | Approved | |
Invantive Data Hub 17.14.16-BETA | 198 | Thursday, March 22, 2018 | Approved | |
Invantive Data Hub 17.14.13-BETA | 217 | Wednesday, March 21, 2018 | Approved | |
Invantive Data Hub 17.14.12-BETA | 241 | Tuesday, March 20, 2018 | Approved | |
Invantive Data Hub 17.14.11-BETA | 201 | Tuesday, March 20, 2018 | Approved | |
Invantive Data Hub 17.14.10-BETA | 215 | Monday, March 19, 2018 | Approved | |
Invantive Data Hub 17.14.9-BETA | 267 | Monday, March 19, 2018 | Approved | |
Invantive Data Hub 17.14.8-BETA | 250 | Friday, March 16, 2018 | Approved | |
Invantive Data Hub 17.14.6-BETA | 224 | Friday, March 16, 2018 | Approved | |
Invantive Data Hub 17.14.5-BETA | 256 | Wednesday, March 14, 2018 | Approved | |
Invantive Data Hub 17.14.3-BETA | 230 | Monday, March 12, 2018 | Approved | |
Invantive Data Hub 17.14.2-BETA | 280 | Friday, March 9, 2018 | Approved | |
Invantive Data Hub 17.14.1-BETA | 231 | Thursday, March 8, 2018 | Approved | |
Invantive Data Hub 17.14.0 | 245 | Wednesday, March 7, 2018 | Approved | |
Invantive Data Hub 17.13.52-BETA | 249 | Tuesday, March 6, 2018 | Approved | |
Invantive Data Hub 17.13.51-BETA | 249 | Monday, March 5, 2018 | Approved | |
Invantive Data Hub 17.13.50-BETA | 244 | Friday, March 2, 2018 | Approved | |
Invantive Data Hub 17.13.49-BETA | 296 | Thursday, February 22, 2018 | Approved | |
Invantive Data Hub 17.13.48-BETA | 273 | Thursday, February 22, 2018 | Approved | |
Invantive Data Hub 17.13.47-BETA | 255 | Tuesday, February 20, 2018 | Approved | |
Invantive Data Hub 17.13.46-BETA | 246 | Monday, February 19, 2018 | Approved | |
Invantive Data Hub 17.13.45-BETA | 241 | Friday, February 16, 2018 | Approved | |
Invantive Data Hub 17.13.43-BETA | 240 | Friday, February 16, 2018 | Approved | |
Invantive Data Hub 17.13.42-BETA | 235 | Wednesday, February 14, 2018 | Approved | |
Invantive Data Hub 17.13.41-BETA | 256 | Wednesday, February 14, 2018 | Approved | |
Invantive Data Hub 17.13.40-BETA | 227 | Monday, February 12, 2018 | Approved | |
Invantive Data Hub 17.13.39-BETA | 240 | Saturday, February 10, 2018 | Approved | |
Invantive Data Hub 17.13.38-BETA | 217 | Wednesday, February 7, 2018 | Approved | |
Invantive Data Hub 17.13.37-BETA | 242 | Tuesday, February 6, 2018 | Approved | |
Invantive Data Hub 17.13.36-BETA | 222 | Monday, February 5, 2018 | Approved | |
Invantive Data Hub 17.13.35-BETA | 257 | Friday, February 2, 2018 | Approved | |
Invantive Data Hub 17.13.34-BETA | 220 | Friday, February 2, 2018 | Approved | |
Invantive Data Hub 17.13.33-BETA | 240 | Thursday, February 1, 2018 | Approved | |
Invantive Data Hub 17.13.32-BETA | 255 | Thursday, February 1, 2018 | Approved | |
Invantive Data Hub 17.13.31-BETA | 248 | Thursday, February 1, 2018 | Approved | |
Invantive Data Hub 17.13.30-BETA | 233 | Thursday, February 1, 2018 | Approved | |
Invantive Data Hub 17.13.29-BETA | 251 | Wednesday, January 31, 2018 | Exempted | |
Invantive Data Hub 17.13.28-BETA | 253 | Wednesday, January 31, 2018 | Exempted | |
Invantive Data Hub 17.13.27-BETA | 241 | Tuesday, January 30, 2018 | Exempted | |
Invantive Data Hub 17.13.26-BETA | 244 | Tuesday, January 30, 2018 | Exempted | |
Invantive Data Hub 17.13.25-BETA | 255 | Sunday, January 28, 2018 | Approved | |
Invantive Data Hub 17.13.24-BETA | 254 | Thursday, January 25, 2018 | Approved | |
Invantive Data Hub 17.13.23-BETA | 280 | Thursday, January 25, 2018 | Approved | |
Invantive Data Hub 17.13.22-BETA | 250 | Thursday, January 25, 2018 | Approved | |
Invantive Data Hub 17.13.21-BETA | 238 | Wednesday, January 24, 2018 | Approved | |
Invantive Data Hub 17.13.20-BETA | 252 | Friday, January 19, 2018 | Approved | |
Invantive Data Hub 17.13.18-BETA | 251 | Thursday, January 18, 2018 | Approved | |
Invantive Data Hub 17.13.17-BETA | 228 | Thursday, January 18, 2018 | Approved | |
Invantive Data Hub 17.13.16-BETA | 257 | Tuesday, January 16, 2018 | Approved | |
Invantive Data Hub 17.13.15-BETA | 236 | Tuesday, January 16, 2018 | Approved | |
Invantive Data Hub 17.13.14-BETA | 258 | Tuesday, January 16, 2018 | Approved | |
Invantive Data Hub 17.13.13-BETA | 269 | Monday, January 15, 2018 | Approved | |
Invantive Data Hub 17.13.12-BETA | 235 | Saturday, January 13, 2018 | Approved | |
Invantive Data Hub 17.13.11-BETA | 248 | Friday, January 12, 2018 | Approved | |
Invantive Data Hub 17.13.10-BETA | 256 | Thursday, January 11, 2018 | Approved | |
Invantive Data Hub 17.13.9-BETA | 245 | Wednesday, January 10, 2018 | Approved | |
Invantive Data Hub 17.13.8-BETA | 285 | Monday, January 8, 2018 | Approved | |
Invantive Data Hub 17.13.7-RC | 252 | Monday, January 8, 2018 | Approved | |
Invantive Data Hub 17.13.6-RC | 276 | Monday, January 8, 2018 | Approved | |
Invantive Data Hub 17.13.5-RC | 238 | Friday, January 5, 2018 | Approved | |
Invantive Data Hub 17.13.4-RC | 251 | Thursday, December 21, 2017 | Approved | |
Invantive Data Hub 17.13.3-RC | 260 | Thursday, December 21, 2017 | Approved | |
Invantive Data Hub 17.13.2-RC | 289 | Tuesday, December 19, 2017 | Approved | |
Invantive Data Hub 17.13.1-RC | 278 | Monday, December 18, 2017 | Approved | |
Invantive Data Hub 17.13.0-RC | 272 | Monday, December 18, 2017 | Approved | |
Invantive Data Hub 17.12.6-RC | 295 | Monday, December 18, 2017 | Approved | |
Invantive Data Hub 17.12.5-RC | 287 | Monday, December 18, 2017 | Approved | |
Invantive Data Hub 17.12.4-RC | 272 | Friday, December 15, 2017 | Approved | |
Invantive Data Hub 17.12.3-RC | 302 | Friday, December 15, 2017 | Approved | |
Invantive Data Hub 17.12.2-RC | 292 | Tuesday, December 12, 2017 | Approved | |
Invantive Data Hub 17.12.1-RC | 265 | Tuesday, December 12, 2017 | Approved | |
Invantive Data Hub 17.12.0-RC | 287 | Friday, December 8, 2017 | Approved | |
Invantive Data Hub 17.11.49 | 291 | Thursday, December 7, 2017 | Approved | |
Invantive Data Hub 17.11.48 | 277 | Monday, December 4, 2017 | Approved | |
Invantive Data Hub 17.11.47 | 294 | Monday, December 4, 2017 | Approved | |
Invantive Data Hub 17.11.46-RC | 260 | Friday, December 1, 2017 | Exempted | |
Invantive Data Hub 17.11.45-RC | 274 | Friday, December 1, 2017 | Exempted | |
Invantive Data Hub 17.11.44-RC | 304 | Friday, December 1, 2017 | Exempted | |
Invantive Data Hub 17.11.43-RC | 284 | Thursday, November 30, 2017 | Exempted | |
Invantive Data Hub 17.11.42-RC | 251 | Wednesday, November 29, 2017 | Exempted | |
Invantive Data Hub 17.11.41-RC | 284 | Tuesday, November 28, 2017 | Exempted | |
Invantive Data Hub 17.11.40-RC | 283 | Saturday, November 25, 2017 | Exempted | |
Invantive Data Hub 17.10.13 | 270 | Wednesday, October 11, 2017 | Approved |
(C) Copyright 2004-2022 Invantive Software B.V., the Netherlands. All rights reserved.
Included components:
- Invantive.Producer.Windows 20.2.243
Version 20.2.196, released 2022-01-04.
Enhancements:
- Upgrade to .NET 6.
Version 20.2.159, released 2021-12-12.
Enhancements:
- Prefix output with optional timestamp.
- Prefix output with optional timestamp.
Version 20.2.143, released 2021-12-01.
Enhancements:
- Separate prefix and SQL statement when SQL statement has line feeds.
Version 20.2.120, released 2021-11-09.
Enhancements:
- Add new OG images.
Version 20.2.74, released 2021-10-26.
Enhancements:
- Change execution log and native call logging to NDJSON format.
Version 20.2.13, released 2021-09-13.
Enhancements:
- Give hint on running Data Hub interactive on itgenlic251.
- Save refresh token in Invantive KeyChain.
- Show error itgendhb232 when the log file name/path is empty.
- Add "local on error default".
- Make locker readonly.
- Improve DBMS output on Query Tool.
- Register date/time of occurrence of dbms_output.
- Add log file and trace file name path to Data Hub end-user failure reports.
- Include dbms_output also in Data Hub log files.
- Add printing of dbms_output.
- Memorize last action.
- Generate more unique message codes.
- Add option to close application on console menus.
- Add local host statement.
- On invalid email address on Data Hub offer correction before log on.
- Indicate that encrypted value is a license key instead of the default 'password' text on decryption failure.
- Add Mac OSX support.
- Avoid NullReferenceException on Debian 8.
- Data Hub: Add license key command line argument.
- Print final error to console for console apps when the exit code is not equal to 0.
- Upgrade to Microsoft.net 4.7.2.
- Replace Mac version of Data Hub by .net core version.
- Add .NET Core version of Invantive Data Hub.
- Add verbose command line argument.
- Improve startup performance [ITGEN-451].
Bug fixes:
- Enable again 64-bit mode on Data Hub.
- Switch to 64-bit again.
- Raise error when file being loaded in Data Hub Windows and .ent core does not exist and running in headless mode.
- Fix Producer repository log on using managed Oracle driver.
- Only print error context when present.
- Make unwrapped error codes in Data Hub less confusing.
- Fix NullReferenceException on 'use'.
- Fix NullReferenceException when using 'use [email protected]' on Data Hub.
- Differentiate progress messages between SQL and PSQL.
- Improve clarity of message itgendhb086.
- Avoid superfluous question when last statement in batch fails in interactive mode.
- Fix exit code being reset from non-zero to 0 when a nested SQL script is executed after an error occurred during 'on error continue' mode.
- Log time in UTC.
- Return exit code also from files started from @ or @@.
- Fix NullReference when pressing CTRL-D on Mac during entry or CTRL-Z on MS-DOS.
- Correctly load license key from command line [ITGEN-4011].
- Avoid waiting for manual entry when the program is running non-interactive and early on a license error occurs.
- Fix System.Runtime not found exception [ITGEN-3857].
- Can't connect to SQL Server or PostgreSQL due to missing references [ITGEN-3767].
- Correct reversed logic of logoverwrite command line parameter [ITGEN-3540].
Version 17.28.1, released 2018-10-22.
Enhancements:
- Print log on progress when running headless.
- Improve clarity of error message itgendhb077.
- Set provider attributes and variables through command line.
- Memorize and use multiple credentials per data container alias.
- Enable use of logon settings.
- Set data container credentials.
- Save credentials new logon dialog.
- Add use of encrypted Invantive Script variable values [SECURITY].
- Add new log file name parameter Windows host name, user name and domain name.
- Update documentation.
- Explain command line arguments.
- Add support for date/time masks in log file name.
- Add @@ to load script from folder from which last script was loaded.
Bug fixes:
- Show actual error instead of NulLReferenceException when Invantive Web Services returns itgencmr008.
- Return exit code unequal to 0 when an error occurs in 'on error continue' mode.
- Reduce memory consumption [ITGEN-2582].
-
- dotnet4.7.2 (≥ 4.7.2.20180712)
Ground Rules:
- This discussion is only about Invantive(R) Data Hub and the Invantive(R) Data Hub 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 Invantive(R) Data Hub, 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.