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...

Downloads:
8,582
Downloads of v 17.12.42-RC:
222
Last Update:
25 Nov 2017
Package Maintainer(s):
Software Author(s):
- Invantive Software B.V.
Tags:
Invantive Studio- Software Specific:
- Software Site
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Invantive Studio
This is a prerelease version of Invantive Studio.
- Software Specific:
- Software Site
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
8,582
Downloads of v 17.12.42-RC:
222
Maintainer(s):
Software Author(s):
- Invantive Software B.V.
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
This Package Contains an Exempted Check
1 Test Passing and 1 Exempted Test
Validation Testing Passed
Verification Testing Exempt:
Requires dotnet4.7 and a reboot
To install Invantive Studio, run the following command from the command line or from PowerShell:
To upgrade Invantive Studio, run the following command from the command line or from PowerShell:
To uninstall Invantive Studio, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
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://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
choco download invantive-studio --internalize --version=17.12.42-RC --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade invantive-studio -y --source="'STEP 3 URL'" [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-studio -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure invantive-studio installed
win_chocolatey:
name: invantive-studio
state: present
version: 17.12.42-RC
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'invantive-studio' do
action :install
version '17.12.42-RC'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: invantive-studio,
Version: 17.12.42-RC,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller invantive-studio
{
Name = 'invantive-studio'
Ensure = 'Present'
Version = '17.12.42-RC'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'invantive-studio':
provider => 'chocolatey',
ensure => '17.12.42-RC',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install invantive-studio version="17.12.42-RC" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
Invantive Studio
$ErrorActionPreference = 'Stop';
$packageName= 'invantive-studio'
$packageArgs = @{
packageName = $packageName
fileType = 'MSI'
url = 'https://download.invantive.com/release/msi/Invantive%20Studio-17.12.42-RC.msi'
url64bit = 'https://download.invantive.com/release/msi/Invantive%20Studio-17.12.42-RC.msi'
softwareName = 'Invantive Studio'
checksum = '71A139758936DD56861E6EE4EFEFB19B8294C4B4C6846C8DB80DB78A386FF56A'
checksumType = 'sha256'
checksum64 = '71A139758936DD56861E6EE4EFEFB19B8294C4B4C6846C8DB80DB78A386FF56A'
checksumType64 = 'sha256'
silentArgs = "/qn /norestart /l*v `"$env:Temp\invantive-studio-17.12.42-msi-install.log`""
validExitCodes = @(0, 3010, 1641)
}
Install-ChocolateyPackage @packageArgs
Log in or click on link to see number of positives.
- invantive-studio.17.12.42-RC.nupkg (e1e7f99236f6) - ## / 58
- Invantive Studio-17.12.42-RC.msi (71a139758936) - ## / 59
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Invantive Studio 20.1.288-BETA | 47 | Friday, November 27, 2020 | Exempted |
Invantive Studio 20.1.278-BETA | 12 | Friday, November 13, 2020 | Approved |
Invantive Studio 20.1.20-BETA | 75 | Saturday, May 2, 2020 | Approved |
Invantive Studio 20.0.131 | 30 | Tuesday, December 15, 2020 | Approved |
Invantive Studio 20.0.128 | 12 | Friday, December 4, 2020 | Approved |
Invantive Studio 20.0.127 | 22 | Wednesday, December 2, 2020 | Approved |
Invantive Studio 20.0.116 | 18 | Thursday, November 12, 2020 | Approved |
Invantive Studio 20.0.107 | 14 | Tuesday, October 27, 2020 | Approved |
Invantive Studio 20.0.93 | 28 | Saturday, September 19, 2020 | Approved |
Invantive Studio 20.0.90 | 21 | Monday, September 14, 2020 | Approved |
Invantive Studio 20.0.82 | 28 | Monday, August 31, 2020 | Approved |
Invantive Studio 20.0.79 | 27 | Thursday, August 27, 2020 | Approved |
Invantive Studio 20.0.64 | 31 | Thursday, August 6, 2020 | Approved |
Invantive Studio 20.0.48 | 39 | Wednesday, July 8, 2020 | Approved |
Invantive Studio 20.0.40 | 29 | Wednesday, June 17, 2020 | Approved |
Invantive Studio 20.0.33 | 32 | Tuesday, May 26, 2020 | Approved |
Invantive Studio 20.0.23 | 63 | Thursday, May 7, 2020 | Approved |
Invantive Studio 20.0.0 | 92 | Saturday, March 28, 2020 | Approved |
Invantive Studio 17.33.108-BETA | 81 | Friday, September 20, 2019 | Approved |
Invantive Studio 17.32.267 | 9 | Friday, October 23, 2020 | Approved |
Invantive Studio 17.32.249 | 32 | Thursday, August 6, 2020 | Approved |
Invantive Studio 17.32.228 | 22 | Wednesday, July 8, 2020 | Approved |
Invantive Studio 17.32.227 | 29 | Monday, July 6, 2020 | Approved |
Invantive Studio 17.32.217 | 28 | Tuesday, May 26, 2020 | Approved |
Invantive Studio 17.32.213 | 39 | Friday, May 8, 2020 | Approved |
Invantive Studio 17.32.211 | 48 | Thursday, May 7, 2020 | Approved |
Invantive Studio 17.32.205 | 38 | Saturday, April 4, 2020 | Approved |
Invantive Studio 17.32.171 | 100 | Monday, February 10, 2020 | Approved |
Invantive Studio 17.32.170 | 65 | Saturday, February 8, 2020 | Approved |
Invantive Studio 17.32.139 | 61 | Wednesday, December 18, 2019 | Approved |
Invantive Studio 17.32.49 | 92 | Thursday, August 8, 2019 | Approved |
Invantive Studio 17.31.55-BETA | 98 | Thursday, March 14, 2019 | Approved |
Invantive Studio 17.31.53-BETA | 100 | Monday, March 11, 2019 | Approved |
Invantive Studio 17.31.19-BETA | 107 | Wednesday, January 23, 2019 | Approved |
Invantive Studio 17.31.17-BETA | 92 | Monday, January 21, 2019 | Approved |
Invantive Studio 17.30.0 | 118 | Thursday, January 10, 2019 | Approved |
Invantive Studio 17.29.67-BETA | 120 | Wednesday, January 9, 2019 | Approved |
Invantive Studio 17.29.66-BETA | 89 | Wednesday, January 9, 2019 | Approved |
Invantive Studio 17.29.65-BETA | 99 | Monday, January 7, 2019 | Approved |
Invantive Studio 17.29.60-BETA | 108 | Friday, December 28, 2018 | Approved |
Invantive Studio 17.29.59-BETA | 117 | Friday, December 28, 2018 | Approved |
Invantive Studio 17.29.43-BETA | 89 | Wednesday, December 12, 2018 | Approved |
Invantive Studio 17.29.31-BETA | 113 | Saturday, December 1, 2018 | Approved |
Invantive Studio 17.29.30-BETA | 126 | Saturday, December 1, 2018 | Approved |
Invantive Studio 17.28.0 | 123 | Monday, October 22, 2018 | Approved |
Invantive Studio 17.27.22-BETA | 108 | Wednesday, October 3, 2018 | Exempted |
Invantive Studio 17.27.15-BETA | 110 | Monday, September 17, 2018 | Approved |
Invantive Studio 17.26.4 | 109 | Monday, September 3, 2018 | Approved |
Invantive Studio 17.24.29 | 162 | Wednesday, July 11, 2018 | Approved |
Invantive Studio 17.24.16-BETA | 164 | Monday, June 25, 2018 | Approved |
Invantive Studio 17.24.0 | 152 | Thursday, June 14, 2018 | Approved |
Invantive Studio 17.23.44-BETA | 165 | Friday, May 25, 2018 | Approved |
Invantive Studio 17.23.43-BETA | 162 | Thursday, May 24, 2018 | Approved |
Invantive Studio 17.23.32-BETA | 168 | Wednesday, May 16, 2018 | Approved |
Invantive Studio 17.23.30-BETA | 164 | Friday, May 11, 2018 | Approved |
Invantive Studio 17.23.8-BETA | 178 | Friday, April 20, 2018 | Approved |
Invantive Studio 17.23.6-BETA | 165 | Friday, April 20, 2018 | Approved |
Invantive Studio 17.23.3-BETA | 188 | Friday, April 13, 2018 | Exempted |
Invantive Studio 17.23.2-BETA | 184 | Friday, April 13, 2018 | Exempted |
Invantive Studio 17.20.0 | 184 | Tuesday, April 10, 2018 | Approved |
Invantive Studio 17.19.0 | 226 | Monday, April 9, 2018 | Approved |
Invantive Studio 17.18.39-BETA | 185 | Friday, March 30, 2018 | Exempted |
Invantive Studio 17.18.38-BETA | 186 | Thursday, March 29, 2018 | Exempted |
Invantive Studio 17.18.37-BETA | 197 | Thursday, March 29, 2018 | Exempted |
Invantive Studio 17.18.34-BETA | 203 | Wednesday, March 28, 2018 | Exempted |
Invantive Studio 17.18.32-BETA | 192 | Wednesday, March 28, 2018 | Exempted |
Invantive Studio 17.18.29-BETA | 207 | Tuesday, March 27, 2018 | Exempted |
Invantive Studio 17.18.14-BETA | 188 | Monday, March 19, 2018 | Exempted |
Invantive Studio 17.18.12-BETA | 187 | Friday, March 16, 2018 | Exempted |
Invantive Studio 17.18.9-BETA | 171 | Friday, March 16, 2018 | Exempted |
Invantive Studio 17.17.75-BETA | 217 | Monday, February 19, 2018 | Exempted |
Invantive Studio 17.17.71-BETA | 196 | Wednesday, February 14, 2018 | Exempted |
Invantive Studio 17.17.69-BETA | 188 | Monday, February 12, 2018 | Exempted |
Invantive Studio 17.17.68-BETA | 220 | Saturday, February 10, 2018 | Exempted |
Invantive Studio 17.12.42-RC | 222 | Saturday, November 25, 2017 | Exempted |
Invantive Studio 17.11.40-RC | 232 | Friday, November 24, 2017 | Exempted |
Invantive Studio 17.10.19 | 239 | Wednesday, October 11, 2017 | Approved |
(C) Copyright 2004-2017 Invantive Software B.V., the Netherlands. All rights reserved.
Included components:
- Invantive.Producer.Windows 17.12.42-RC
Version 17.11.27-RC, released 2017-11-21:
- Correct layout of Data tab in Diagnostics. Numbers fit again.
- Diversify errors on early compatibility checks.
Version 17.11.14-RC, released 2017-11-11:
- Trim composed labels after translation to ensure readable labels even when the prefix translates to empty string.
Version 17.11.8-RC, released 2017-11-08:
- Allow deviating license contract code for authentication on Customer Service on behalf of Data Replicator.
Version 17.11.5-RC, released 2017-11-06:
- Show error on multiple statement execution in the correct format.
Version 17.10.172-RC, released 2017-11-02:
- Add translations to EZ-Base provider.
- Smoke.
- Smoke
- Error on asking assembly numbers. [ITGEN-1900]
- Add view maintenance: install business views on Postgresql and SQL Server [ITGEN-1918]
- Add view maintenance: install business views on Postgresql and SQL Server [ITGEN-1918]
- Add additional domains and values for Exact Online.
- Raise error when a settings.xml has no version defined.
- Allow connection string to be empty for trivial providers such as ECB.
- Avoid NullReference in Data Hub for provider attribute with null default value.
- Clarify error message in Data Hub and Query Tool when Exact Online wrong password entered.
- Added Accountancy endpoints to Exact Online provider.
- Offer discovery in Data Hub when an unknown connection is specified.
- Reduce length of call stack printed in console window for Data Hub
- Reduce length of call stacks.
- Show number of messages downloaded by trickle loading after download feed in Data Replicator.
- Show URL to configure webhooks for trickle loading in console user interface.
- Add domain tables for Exact Online.
- Merge
- NullReferenceException on query when not adding alias to default/first provider. [ITGEN-1948]
- Updated ExactOnline REST metadata.
- itgenemd007: An element with the key 'P_ACCOUNT_CODE' already exists in the dicitonary. [ITGEN-1939]
- Correct outcome of equals sign when selecting on code in accounts in EOL REST [ITGEN-104]
- Slow or OutOfMemoryException on parameter pick lists. [ITGEN-1940]
- Fix invalid parameter binding Invantive Studio on log on [ITGEN-1863]
- Add test case [ITGEN-1938].
- Add option to export technical headers (column names) instead of user-friendly labels [ITGEN-1937].
- Allow use of COMPRESS as a column name [ITGEN-1936].
- Stability improvements to the SQL engine. Calculations with DateTime return the right data type now.
- Add EZ-Base provider.
- Add unit tests for EZ-Base.
- Add fixed days to run methods for Exact Online plus new LOV IntrastatTypes.
- Improve error message on 403 Forbidden for Exact Online XML by including division number.
- Remove temporary code that caused bulk insert on SQL Server to fail.
- Enable group functions on Open Data and with premium license in Invantive Query Tool.
- Enable more than 100 rows result sets with full Invantive SQL license in Query Tool.
- Merge Open Data license and free license on Invantive Query Tool.
- Avoid NullReferenceException when the KDBX database could not be decrypted.
- Icons Proactive & EZ Base
- Add create or replace table support for ANSI SQL providers: PostgreSQL and SQL Server
- Log downloaded messages in event log for Data Replicator.
- Display metadata droppable days in Data Cache text form.
- Actually fill new fields on transaction lines / bulk with GL account information.
- Allow configuration after how many days the table partition version metadata is dropped from Data Replicator
- itgenmsy001 The index position 525 is not in use. The last index used is 304. [ITGEN-1906]
- Date subtract gives wrong outcome by factor -24. [ITGEN-1910]
- itgenoda093: At least one division is missing in your filter. Missing divisions: . [ITGEN-1907]
- Optimize memory usage when joining with an empty row in a left outer join.
- Return fields in the correct order when passing select fields to the OData/ODataProvider.Fetch method.
- Fix data type error on column ALLOW_DISPLAY for query for SystemProviderAttributes.
- Add unique entry ID to every XML element. [ITGEN-1898]
- Ensure vital messages are sent to the customer service on a failing program.
- Add extensive GL Account information on Exact Online GL transaction lines.
- Renamed wix images. [NTERNAL]
- Allow download feed from Data Cache menu in Data Hub.
- Allow Data Replicator messages from feed to be deleted.
- Enable data model upgrade without restarting Data Replicator.
- Lower-case views for partition and overall storage in Data Replicator.
- Change default of maintain partition views to false.
- Upgrade Data Replicator data model to support date occurrence at server local time.
- Add date of event occurrence for Data Replicator in server local time.
- Add GLAccountClassificationMappings for Exact Online [ITGEN-1891].
- Store in-memory table directly from result set to improve performance.
- Removed ancient warnings [INTERAL]
- Invantive SQL: Return correct return type for parameters.
- Clarify error message itgenprr005 with actual string value.
- Remove usings.
- Force garbage collection on disconnect to database.
- Collect garbage after dropping in memory storage provide table.
- Show in diagnostics whether a 32-bit application is large address aware (3 GB addressable).
- Reduce memory footprint of results.
- Cache HTTP requests on disk when requested.
- Instrument software with measurements, available in [email protected]
- Improve speed of HTTP cache.
- Reduce memory footprint of OData EDM data types.
- Reduce memory footprint by trimming sparse arrays.
- Improve hints on password manager suggestions on log on.
- Correct calculation of century and era in calendar of Data Dictionary.
- Add table function regexp_split_row to split text according to regular expressions.
- Avoid error on Invantive Web Service trying to rewrite connection string.
- Improve suggestions for user names from password manager
- Add icons for VIES [internal] [ITGEN-1874].
Details of ReleaseNotes:
Version 17.10.172:
Reduce length of call stack printed in console window for Data Hub
Also delay a few seconds after an error to allow the user to read it.
Version 17.10.115:
Add create or replace table support for ANSI SQL providers: PostgreSQL and SQL Server
Include bulk insert from result set of query.
Allow configuration after how many days the table partition version metadata is dropped from Data Replicator
Upgrades Data Replicator / Data Cache repository to version 4.
Version 17.10.37:
Improve suggestions for user names from password manager
Define INVANTIVE_EXCLUDE property on KDBX entry to exclude it.
Define INVANTIVE_HINT property or tags with matching texts to make it more likely to match.
-
- dotnet4.7 (≥ 4.7.2053.0)
Ground Rules:
- This discussion is only about Invantive Studio and the Invantive Studio 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 Studio, 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.