Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

23,734

Downloads of v 17.10.19:

355

Last Update:

11 Oct 2017

Package Maintainer(s):

Software Author(s):

  • Invantive Software B.V.

Tags:

invantive studio

Invantive Studio

This is not the latest version of Invantive Studio available.

  • 1
  • 2
  • 3

17.10.19 | Updated: 11 Oct 2017

Downloads:

23,734

Downloads of v 17.10.19:

355

Maintainer(s):

Software Author(s):

  • Invantive Software B.V.

Invantive Studio 17.10.19

This is not the latest version of Invantive Studio available.

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Requires dotnet4.7 and a reboot

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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:

>

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

  • 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

3. Copy Your Script

choco upgrade invantive-studio -y --source="'INTERNAL REPO URL'" --version="'17.10.19'" [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="'INTERNAL REPO URL'" --version="'17.10.19'" 
$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-studio
  win_chocolatey:
    name: invantive-studio
    version: '17.10.19'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'invantive-studio' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '17.10.19'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller invantive-studio
{
    Name     = "invantive-studio"
    Version  = "17.10.19"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'invantive-studio':
  ensure   => '17.10.19',
  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.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved by moderator AdmiringWorm on 03 Nov 2017.

Description

Invantive Studio


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';

$packageName= 'invantive-studio'

$packageArgs = @{
  packageName = $packageName
  fileType = 'MSI'
  url = 'https://download.invantive.com/release/msi/Invantive%20Studio-17.10.19.msi'
  url64bit = 'https://download.invantive.com/release/msi/Invantive%20Studio-17.10.19.msi'
  softwareName = 'Invantive Studio'
  checksum = '6CD225A3A542F3F8160A5CD3D9FEF9556697DBECD59B5D5EF42900CBE9915BAD'
  checksumType = 'sha256'
  checksum64 = '6CD225A3A542F3F8160A5CD3D9FEF9556697DBECD59B5D5EF42900CBE9915BAD'
  checksumType64 = 'sha256'
  silentArgs = "/qn /norestart /l*v `"$env:Temp\invantive-studio-17.10.19-msi-install.log`""
  validExitCodes = @(0, 3010, 1641)
}

Install-ChocolateyPackage @packageArgs

Log in or click on link to see number of positives.

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 Studio 22.1.48-BETA 66 Monday, May 16, 2022 Approved
Invantive Studio 22.1.47-BETA 58 Sunday, May 15, 2022 Approved
Invantive Studio 22.1.46-BETA 50 Sunday, May 15, 2022 Approved
Invantive Studio 22.1.40-BETA 52 Thursday, May 12, 2022 Approved
Invantive Studio 22.1.39-BETA 59 Tuesday, May 10, 2022 Approved
Invantive Studio 22.1.38-BETA 49 Monday, May 9, 2022 Approved
Invantive Studio 22.1.37-BETA 62 Sunday, May 8, 2022 Approved
Invantive Studio 22.1.36-BETA 60 Saturday, May 7, 2022 Approved
Invantive Studio 22.1.35-BETA 62 Wednesday, May 4, 2022 Approved
Invantive Studio 22.1.31-BETA 69 Monday, April 4, 2022 Approved
Invantive Studio 22.1.29-BETA 57 Sunday, April 3, 2022 Approved
Invantive Studio 22.1.27-BETA 58 Saturday, April 2, 2022 Approved
Invantive Studio 22.1.24-BETA 49 Friday, April 1, 2022 Approved
Invantive Studio 22.1.21-BETA 54 Sunday, March 13, 2022 Approved
Invantive Studio 22.1.6-BETA 71 Wednesday, February 2, 2022 Approved
Invantive Studio 22.1.1-BETA 66 Wednesday, January 26, 2022 Approved
Invantive Studio 22.0.186 57 Friday, May 13, 2022 Approved
Invantive Studio 22.0.183 56 Tuesday, May 10, 2022 Approved
Invantive Studio 22.0.182 56 Tuesday, May 10, 2022 Approved
Invantive Studio 22.0.180 52 Tuesday, May 10, 2022 Approved
Invantive Studio 22.0.177 58 Monday, May 9, 2022 Approved
Invantive Studio 22.0.176 53 Monday, May 9, 2022 Approved
Invantive Studio 22.0.170 49 Monday, May 9, 2022 Approved
Invantive Studio 22.0.169 50 Sunday, May 8, 2022 Approved
Invantive Studio 22.0.168 47 Sunday, May 8, 2022 Approved
Invantive Studio 22.0.167 55 Sunday, May 8, 2022 Approved
Invantive Studio 22.0.166 56 Saturday, May 7, 2022 Approved
Invantive Studio 22.0.165 56 Friday, May 6, 2022 Approved
Invantive Studio 22.0.164 57 Friday, May 6, 2022 Approved
Invantive Studio 22.0.163 60 Thursday, May 5, 2022 Approved
Invantive Studio 22.0.162 49 Thursday, May 5, 2022 Approved
Invantive Studio 22.0.161 58 Thursday, May 5, 2022 Approved
Invantive Studio 22.0.160 66 Wednesday, May 4, 2022 Approved
Invantive Studio 22.0.159 55 Wednesday, May 4, 2022 Approved
Invantive Studio 22.0.158 53 Tuesday, May 3, 2022 Approved
Invantive Studio 22.0.156 57 Monday, May 2, 2022 Approved
Invantive Studio 22.0.155 49 Sunday, May 1, 2022 Approved
Invantive Studio 22.0.153 53 Friday, April 29, 2022 Approved
Invantive Studio 22.0.151 65 Thursday, April 28, 2022 Approved
Invantive Studio 22.0.150 46 Tuesday, April 26, 2022 Approved
Invantive Studio 22.0.149 45 Tuesday, April 26, 2022 Approved
Invantive Studio 22.0.142 55 Saturday, April 23, 2022 Approved
Invantive Studio 22.0.141 50 Friday, April 22, 2022 Approved
Invantive Studio 22.0.140 53 Thursday, April 21, 2022 Approved
Invantive Studio 22.0.138 51 Thursday, April 21, 2022 Approved
Invantive Studio 22.0.137 57 Wednesday, April 20, 2022 Approved
Invantive Studio 22.0.136 57 Wednesday, April 20, 2022 Approved
Invantive Studio 22.0.135 50 Tuesday, April 19, 2022 Approved
Invantive Studio 22.0.130 49 Monday, April 18, 2022 Approved
Invantive Studio 22.0.128 52 Saturday, April 16, 2022 Approved
Invantive Studio 22.0.127 49 Friday, April 15, 2022 Approved
Invantive Studio 22.0.126 58 Friday, April 15, 2022 Approved
Invantive Studio 22.0.124 52 Thursday, April 14, 2022 Approved
Invantive Studio 22.0.123 59 Wednesday, April 13, 2022 Approved
Invantive Studio 22.0.122 53 Wednesday, April 13, 2022 Approved
Invantive Studio 22.0.120 55 Tuesday, April 12, 2022 Approved
Invantive Studio 22.0.118 61 Tuesday, April 12, 2022 Approved
Invantive Studio 22.0.117 58 Monday, April 11, 2022 Approved
Invantive Studio 22.0.116 60 Monday, April 11, 2022 Approved
Invantive Studio 22.0.115 65 Sunday, April 10, 2022 Approved
Invantive Studio 22.0.114 56 Saturday, April 9, 2022 Approved
Invantive Studio 22.0.111 57 Saturday, April 9, 2022 Approved
Invantive Studio 22.0.104 60 Wednesday, April 6, 2022 Approved
Invantive Studio 22.0.103 53 Tuesday, April 5, 2022 Approved
Invantive Studio 22.0.102 66 Monday, April 4, 2022 Approved
Invantive Studio 22.0.101 48 Sunday, April 3, 2022 Approved
Invantive Studio 22.0.99 55 Sunday, April 3, 2022 Approved
Invantive Studio 22.0.96 56 Friday, April 1, 2022 Approved
Invantive Studio 22.0.94 55 Thursday, March 31, 2022 Approved
Invantive Studio 22.0.93 53 Wednesday, March 30, 2022 Approved
Invantive Studio 22.0.92 49 Wednesday, March 30, 2022 Approved
Invantive Studio 22.0.91 59 Monday, March 28, 2022 Approved
Invantive Studio 22.0.84 55 Thursday, March 17, 2022 Approved
Invantive Studio 22.0.82 51 Wednesday, March 16, 2022 Approved
Invantive Studio 22.0.81 57 Tuesday, March 15, 2022 Approved
Invantive Studio 22.0.80 49 Monday, March 14, 2022 Approved
Invantive Studio 22.0.76 50 Sunday, March 13, 2022 Approved
Invantive Studio 22.0.75 59 Saturday, March 12, 2022 Approved
Invantive Studio 22.0.72 51 Friday, March 11, 2022 Approved
Invantive Studio 22.0.55 55 Tuesday, February 22, 2022 Approved
Invantive Studio 22.0.32 60 Tuesday, February 8, 2022 Approved
Invantive Studio 22.0.27 75 Sunday, February 6, 2022 Approved
Invantive Studio 22.0.16 67 Wednesday, February 2, 2022 Approved
Invantive Studio 22.0.3 67 Wednesday, January 26, 2022 Approved
Invantive Studio 20.2.246 73 Thursday, January 20, 2022 Approved
Invantive Studio 20.2.224 74 Thursday, January 13, 2022 Approved
Invantive Studio 20.2.199 75 Tuesday, January 4, 2022 Approved
Invantive Studio 20.2.184 67 Friday, December 31, 2021 Approved
Invantive Studio 20.2.180 74 Thursday, December 30, 2021 Approved
Invantive Studio 20.2.86 73 Wednesday, November 3, 2021 Approved
Invantive Studio 20.2.54 70 Sunday, October 3, 2021 Approved
Invantive Studio 20.2.4 70 Saturday, September 4, 2021 Approved
Invantive Studio 20.1.467-BETA 80 Thursday, July 1, 2021 Approved
Invantive Studio 20.1.435-BETA 88 Monday, May 31, 2021 Approved
Invantive Studio 20.1.364-BETA 123 Wednesday, February 17, 2021 Approved
Invantive Studio 20.1.288-BETA 143 Friday, November 27, 2020 Exempted
Invantive Studio 20.1.278-BETA 127 Friday, November 13, 2020 Approved
Invantive Studio 20.1.20-BETA 204 Saturday, May 2, 2020 Approved
Invantive Studio 20.0.142 111 Tuesday, February 16, 2021 Approved
Invantive Studio 20.0.131 142 Tuesday, December 15, 2020 Approved
Invantive Studio 20.0.128 100 Friday, December 4, 2020 Approved
Invantive Studio 20.0.127 111 Wednesday, December 2, 2020 Approved
Invantive Studio 20.0.116 120 Thursday, November 12, 2020 Approved
Invantive Studio 20.0.107 120 Tuesday, October 27, 2020 Approved
Invantive Studio 20.0.93 157 Saturday, September 19, 2020 Approved
Invantive Studio 20.0.90 130 Monday, September 14, 2020 Approved
Invantive Studio 20.0.82 145 Monday, August 31, 2020 Approved
Invantive Studio 20.0.79 143 Thursday, August 27, 2020 Approved
Invantive Studio 20.0.64 152 Thursday, August 6, 2020 Approved
Invantive Studio 20.0.48 159 Wednesday, July 8, 2020 Approved
Invantive Studio 20.0.40 166 Wednesday, June 17, 2020 Approved
Invantive Studio 20.0.33 160 Tuesday, May 26, 2020 Approved
Invantive Studio 20.0.23 199 Thursday, May 7, 2020 Approved
Invantive Studio 20.0.0 209 Saturday, March 28, 2020 Approved
Invantive Studio 17.33.108-BETA 201 Friday, September 20, 2019 Approved
Invantive Studio 17.32.267 108 Friday, October 23, 2020 Approved
Invantive Studio 17.32.249 153 Thursday, August 6, 2020 Approved
Invantive Studio 17.32.228 132 Wednesday, July 8, 2020 Approved
Invantive Studio 17.32.227 143 Monday, July 6, 2020 Approved
Invantive Studio 17.32.217 155 Tuesday, May 26, 2020 Approved
Invantive Studio 17.32.213 157 Friday, May 8, 2020 Approved
Invantive Studio 17.32.211 184 Thursday, May 7, 2020 Approved
Invantive Studio 17.32.205 181 Saturday, April 4, 2020 Approved
Invantive Studio 17.32.171 233 Monday, February 10, 2020 Approved
Invantive Studio 17.32.170 188 Saturday, February 8, 2020 Approved
Invantive Studio 17.32.139 170 Wednesday, December 18, 2019 Approved
Invantive Studio 17.32.49 216 Thursday, August 8, 2019 Approved
Invantive Studio 17.31.55-BETA 252 Thursday, March 14, 2019 Approved
Invantive Studio 17.31.53-BETA 232 Monday, March 11, 2019 Approved
Invantive Studio 17.31.19-BETA 242 Wednesday, January 23, 2019 Approved
Invantive Studio 17.31.17-BETA 213 Monday, January 21, 2019 Approved
Invantive Studio 17.30.0 256 Thursday, January 10, 2019 Approved
Invantive Studio 17.29.67-BETA 228 Wednesday, January 9, 2019 Approved
Invantive Studio 17.29.66-BETA 204 Wednesday, January 9, 2019 Approved
Invantive Studio 17.29.65-BETA 223 Monday, January 7, 2019 Approved
Invantive Studio 17.29.60-BETA 215 Friday, December 28, 2018 Approved
Invantive Studio 17.29.59-BETA 233 Friday, December 28, 2018 Approved
Invantive Studio 17.29.43-BETA 235 Wednesday, December 12, 2018 Approved
Invantive Studio 17.29.31-BETA 217 Saturday, December 1, 2018 Approved
Invantive Studio 17.29.30-BETA 256 Saturday, December 1, 2018 Approved
Invantive Studio 17.28.0 237 Monday, October 22, 2018 Approved
Invantive Studio 17.27.22-BETA 222 Wednesday, October 3, 2018 Exempted
Invantive Studio 17.27.15-BETA 240 Monday, September 17, 2018 Approved
Invantive Studio 17.26.4 231 Monday, September 3, 2018 Approved
Invantive Studio 17.24.29 300 Wednesday, July 11, 2018 Approved
Invantive Studio 17.24.16-BETA 288 Monday, June 25, 2018 Approved
Invantive Studio 17.24.0 294 Thursday, June 14, 2018 Approved
Invantive Studio 17.23.44-BETA 297 Friday, May 25, 2018 Approved
Invantive Studio 17.23.43-BETA 314 Thursday, May 24, 2018 Approved
Invantive Studio 17.23.32-BETA 284 Wednesday, May 16, 2018 Approved
Invantive Studio 17.23.30-BETA 283 Friday, May 11, 2018 Approved
Invantive Studio 17.23.8-BETA 286 Friday, April 20, 2018 Approved
Invantive Studio 17.23.6-BETA 296 Friday, April 20, 2018 Approved
Invantive Studio 17.23.3-BETA 307 Friday, April 13, 2018 Exempted
Invantive Studio 17.23.2-BETA 303 Friday, April 13, 2018 Exempted
Invantive Studio 17.20.0 312 Tuesday, April 10, 2018 Approved
Invantive Studio 17.19.0 359 Monday, April 9, 2018 Approved
Invantive Studio 17.18.39-BETA 299 Friday, March 30, 2018 Exempted
Invantive Studio 17.18.38-BETA 330 Thursday, March 29, 2018 Exempted
Invantive Studio 17.18.37-BETA 342 Thursday, March 29, 2018 Exempted
Invantive Studio 17.18.34-BETA 318 Wednesday, March 28, 2018 Exempted
Invantive Studio 17.18.32-BETA 307 Wednesday, March 28, 2018 Exempted
Invantive Studio 17.18.29-BETA 313 Tuesday, March 27, 2018 Exempted
Invantive Studio 17.18.14-BETA 315 Monday, March 19, 2018 Exempted
Invantive Studio 17.18.12-BETA 307 Friday, March 16, 2018 Exempted
Invantive Studio 17.18.9-BETA 292 Friday, March 16, 2018 Exempted
Invantive Studio 17.17.75-BETA 346 Monday, February 19, 2018 Exempted
Invantive Studio 17.17.71-BETA 306 Wednesday, February 14, 2018 Exempted
Invantive Studio 17.17.69-BETA 303 Monday, February 12, 2018 Exempted
Invantive Studio 17.17.68-BETA 323 Saturday, February 10, 2018 Exempted
Invantive Studio 17.12.42-RC 339 Saturday, November 25, 2017 Exempted
Invantive Studio 17.11.40-RC 354 Friday, November 24, 2017 Exempted
Invantive Studio 17.10.19 355 Wednesday, October 11, 2017 Approved

Discussion for the Invantive Studio Package

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.
comments powered by Disqus