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:

19,905

Downloads of v 22.1.48-BETA:

72

Last Update:

16 May 2022

Package Maintainer(s):

Software Author(s):

  • Invantive Software B.V.

Tags:

Estate Invantive project control real estate development Windows

Invantive(R) Estate for Windows

This is a prerelease version of Invantive(R) Estate for Windows.

  • 1
  • 2
  • 3

22.1.48-BETA | Updated: 16 May 2022

Downloads:

19,905

Downloads of v 22.1.48-BETA:

72

Maintainer(s):

Software Author(s):

  • Invantive Software B.V.

Invantive(R) Estate for Windows 22.1.48-BETA

This is a prerelease version of Invantive(R) Estate for Windows.

  • 1
  • 2
  • 3

Some Checks Are Exempted or Have Failed

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Requires dotnet4.7 and a reboot

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Invantive(R) Estate for Windows, run the following command from the command line or from PowerShell:

>

To upgrade Invantive(R) Estate for Windows, run the following command from the command line or from PowerShell:

>

To uninstall Invantive(R) Estate for Windows, 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-estate-for-windows -y --source="'INTERNAL REPO URL'" --prerelease [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade invantive-estate-for-windows -y --source="'INTERNAL REPO URL'" --prerelease
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install invantive-estate-for-windows
  win_chocolatey:
    name: invantive-estate-for-windows
    version: '22.1.48-BETA'
    source: INTERNAL REPO URL
    state: present
    allow_prerelease: yes

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


chocolatey_package 'invantive-estate-for-windows' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '22.1.48-BETA'
  options  '--prerelease'
end

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


cChocoPackageInstaller invantive-estate-for-windows
{
    Name        = "invantive-estate-for-windows"
    Version     = "22.1.48-BETA"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

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


package { 'invantive-estate-for-windows':
  ensure          => '22.1.48-BETA',
  install_options => ['--prerelease'],
  provider        => 'chocolatey',
  source          => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 17 May 2022.

Description

Invantive Estate for Windows


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

$packageName= 'invantive-estate-for-windows'

$packageArgs = @{
  packageName = $packageName
  fileType = 'MSI'
  url = 'https://download.invantive.com/release/msi/Invantive%20Estate%20for%20Windows-22.1.48-BETA.msi'
  url64bit = 'https://download.invantive.com/release/msi/Invantive%20Estate%20for%20Windows-22.1.48-BETA.msi'
  softwareName = 'Invantive Estate for Windows'
  checksum = 'A6EB9619B6097B738A1EF8DD09D1A2DEB8852C1F6E554F4569EE92D8E71B2CC7'
  checksumType = 'sha256'
  checksum64 = 'A6EB9619B6097B738A1EF8DD09D1A2DEB8852C1F6E554F4569EE92D8E71B2CC7'
  checksumType64 = 'sha256'
  silentArgs = "/qn /norestart /l*v `"$env:Temp\invantive-estate-for-windows-22.1.48-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(R) Estate for Windows 22.1.48-BETA 72 Monday, May 16, 2022 Approved
Invantive(R) Estate for Windows 22.1.47-BETA 41 Sunday, May 15, 2022 Approved
Invantive(R) Estate for Windows 22.1.46-BETA 48 Sunday, May 15, 2022 Approved
Invantive(R) Estate for Windows 22.1.40-BETA 46 Thursday, May 12, 2022 Approved
Invantive(R) Estate for Windows 22.1.39-BETA 40 Tuesday, May 10, 2022 Approved
Invantive(R) Estate for Windows 22.1.38-BETA 37 Monday, May 9, 2022 Approved
Invantive(R) Estate for Windows 22.1.37-BETA 48 Sunday, May 8, 2022 Approved
Invantive(R) Estate for Windows 22.1.36-BETA 46 Saturday, May 7, 2022 Approved
Invantive(R) Estate for Windows 22.1.31-BETA 46 Monday, April 4, 2022 Approved
Invantive(R) Estate for Windows 22.1.29-BETA 37 Sunday, April 3, 2022 Approved
Invantive(R) Estate for Windows 22.1.27-BETA 45 Saturday, April 2, 2022 Approved
Invantive(R) Estate for Windows 22.1.24-BETA 43 Friday, April 1, 2022 Approved
Invantive(R) Estate for Windows 22.1.21-BETA 51 Sunday, March 13, 2022 Approved
Invantive(R) Estate for Windows 22.1.7-BETA 57 Wednesday, February 2, 2022 Approved
Invantive(R) Estate for Windows 22.0.186 47 Friday, May 13, 2022 Approved
Invantive(R) Estate for Windows 22.0.183 47 Tuesday, May 10, 2022 Approved
Invantive(R) Estate for Windows 22.0.182 44 Tuesday, May 10, 2022 Approved
Invantive(R) Estate for Windows 22.0.180 37 Tuesday, May 10, 2022 Approved
Invantive(R) Estate for Windows 22.0.176 42 Monday, May 9, 2022 Approved
Invantive(R) Estate for Windows 22.0.170 46 Monday, May 9, 2022 Approved
Invantive(R) Estate for Windows 22.0.169 51 Sunday, May 8, 2022 Approved
Invantive(R) Estate for Windows 22.0.168 44 Sunday, May 8, 2022 Approved
Invantive(R) Estate for Windows 22.0.167 45 Sunday, May 8, 2022 Approved
Invantive(R) Estate for Windows 22.0.166 45 Saturday, May 7, 2022 Approved
Invantive(R) Estate for Windows 22.0.165 39 Friday, May 6, 2022 Approved
Invantive(R) Estate for Windows 22.0.164 37 Friday, May 6, 2022 Approved
Invantive(R) Estate for Windows 22.0.163 48 Thursday, May 5, 2022 Approved
Invantive(R) Estate for Windows 22.0.162 34 Thursday, May 5, 2022 Approved
Invantive(R) Estate for Windows 22.0.161 47 Thursday, May 5, 2022 Approved
Invantive(R) Estate for Windows 22.0.160 40 Wednesday, May 4, 2022 Approved
Invantive(R) Estate for Windows 22.0.159 43 Wednesday, May 4, 2022 Approved
Invantive(R) Estate for Windows 22.0.158 48 Tuesday, May 3, 2022 Approved
Invantive(R) Estate for Windows 22.0.156 50 Monday, May 2, 2022 Approved
Invantive(R) Estate for Windows 22.0.155 39 Sunday, May 1, 2022 Approved
Invantive(R) Estate for Windows 22.0.153 56 Friday, April 29, 2022 Approved
Invantive(R) Estate for Windows 22.0.152 38 Friday, April 29, 2022 Approved
Invantive(R) Estate for Windows 22.0.151 46 Thursday, April 28, 2022 Approved
Invantive(R) Estate for Windows 22.0.150 44 Tuesday, April 26, 2022 Approved
Invantive(R) Estate for Windows 22.0.149 44 Tuesday, April 26, 2022 Approved
Invantive(R) Estate for Windows 22.0.142 42 Saturday, April 23, 2022 Approved
Invantive(R) Estate for Windows 22.0.141 48 Friday, April 22, 2022 Approved
Invantive(R) Estate for Windows 22.0.140 46 Thursday, April 21, 2022 Approved
Invantive(R) Estate for Windows 22.0.137 39 Thursday, April 21, 2022 Approved
Invantive(R) Estate for Windows 22.0.136 40 Wednesday, April 20, 2022 Approved
Invantive(R) Estate for Windows 22.0.135 41 Tuesday, April 19, 2022 Approved
Invantive(R) Estate for Windows 22.0.134 51 Tuesday, April 19, 2022 Approved
Invantive(R) Estate for Windows 22.0.130 53 Monday, April 18, 2022 Approved
Invantive(R) Estate for Windows 22.0.127 42 Friday, April 15, 2022 Approved
Invantive(R) Estate for Windows 22.0.126 44 Friday, April 15, 2022 Approved
Invantive(R) Estate for Windows 22.0.125 47 Thursday, April 14, 2022 Approved
Invantive(R) Estate for Windows 22.0.124 47 Thursday, April 14, 2022 Approved
Invantive(R) Estate for Windows 22.0.123 52 Wednesday, April 13, 2022 Approved
Invantive(R) Estate for Windows 22.0.122 40 Wednesday, April 13, 2022 Approved
Invantive(R) Estate for Windows 22.0.121 37 Wednesday, April 13, 2022 Approved
Invantive(R) Estate for Windows 22.0.120 36 Tuesday, April 12, 2022 Approved
Invantive(R) Estate for Windows 22.0.118 44 Tuesday, April 12, 2022 Approved
Invantive(R) Estate for Windows 22.0.116 45 Monday, April 11, 2022 Approved
Invantive(R) Estate for Windows 22.0.115 43 Sunday, April 10, 2022 Approved
Invantive(R) Estate for Windows 22.0.114 49 Saturday, April 9, 2022 Approved
Invantive(R) Estate for Windows 22.0.111 49 Saturday, April 9, 2022 Approved
Invantive(R) Estate for Windows 22.0.104 45 Wednesday, April 6, 2022 Approved
Invantive(R) Estate for Windows 22.0.103 43 Tuesday, April 5, 2022 Approved
Invantive(R) Estate for Windows 22.0.102 44 Monday, April 4, 2022 Approved
Invantive(R) Estate for Windows 22.0.101 47 Sunday, April 3, 2022 Approved
Invantive(R) Estate for Windows 22.0.99 50 Sunday, April 3, 2022 Approved
Invantive(R) Estate for Windows 22.0.96 44 Friday, April 1, 2022 Approved
Invantive(R) Estate for Windows 22.0.94 50 Thursday, March 31, 2022 Approved
Invantive(R) Estate for Windows 22.0.93 51 Wednesday, March 30, 2022 Approved
Invantive(R) Estate for Windows 22.0.92 41 Wednesday, March 30, 2022 Approved
Invantive(R) Estate for Windows 22.0.91 52 Monday, March 28, 2022 Approved
Invantive(R) Estate for Windows 22.0.90 51 Thursday, March 24, 2022 Approved
Invantive(R) Estate for Windows 22.0.89 49 Thursday, March 24, 2022 Approved
Invantive(R) Estate for Windows 22.0.88 44 Wednesday, March 23, 2022 Approved
Invantive(R) Estate for Windows 22.0.87 41 Wednesday, March 23, 2022 Approved
Invantive(R) Estate for Windows 22.0.86 42 Tuesday, March 22, 2022 Approved
Invantive(R) Estate for Windows 22.0.85 54 Friday, March 18, 2022 Approved
Invantive(R) Estate for Windows 22.0.84 50 Thursday, March 17, 2022 Approved
Invantive(R) Estate for Windows 22.0.83 50 Thursday, March 17, 2022 Approved
Invantive(R) Estate for Windows 22.0.81 45 Wednesday, March 16, 2022 Approved
Invantive(R) Estate for Windows 22.0.76 55 Sunday, March 13, 2022 Approved
Invantive(R) Estate for Windows 22.0.75 84 Saturday, March 12, 2022 Approved
Invantive(R) Estate for Windows 22.0.17 65 Wednesday, February 2, 2022 Approved
Invantive(R) Estate for Windows 22.0.13 65 Friday, January 28, 2022 Approved
Invantive(R) Estate for Windows 20.2.181 61 Thursday, December 30, 2021 Approved
Invantive(R) Estate for Windows 20.2.180 56 Thursday, December 30, 2021 Approved
Invantive(R) Estate for Windows 20.2.145 60 Thursday, December 2, 2021 Approved
Invantive(R) Estate for Windows 20.2.53 80 Saturday, October 2, 2021 Approved
Invantive(R) Estate for Windows 20.2.37 65 Monday, September 27, 2021 Approved
Invantive(R) Estate for Windows 20.2.17 54 Friday, September 17, 2021 Approved
Invantive(R) Estate for Windows 20.2.15 51 Wednesday, September 15, 2021 Approved
Invantive(R) Estate for Windows 20.2.10 58 Saturday, September 11, 2021 Approved
Invantive(R) Estate for Windows 20.2.3 72 Friday, September 3, 2021 Approved
Invantive(R) Estate for Windows 20.2.1-RC 64 Wednesday, September 1, 2021 Approved
Invantive(R) Estate for Windows 20.2.0-RC 57 Wednesday, September 1, 2021 Approved
Invantive(R) Estate for Windows 20.1.532-BETA 65 Thursday, August 5, 2021 Approved
Invantive(R) Estate for Windows 20.0.0 298 Sunday, March 29, 2020 Approved
Invantive(R) Estate for Windows 17.33.89-BETA 190 Tuesday, September 3, 2019 Approved
Invantive(R) Estate for Windows 17.33.88-BETA 161 Tuesday, September 3, 2019 Approved
Invantive(R) Estate for Windows 17.32.273 64 Thursday, August 5, 2021 Approved
Invantive(R) Estate for Windows 17.32.272 66 Thursday, August 5, 2021 Approved
Invantive(R) Estate for Windows 17.32.271 97 Thursday, November 12, 2020 Approved
Invantive(R) Estate for Windows 17.32.270 93 Tuesday, November 10, 2020 Approved
Invantive(R) Estate for Windows 17.32.269 105 Tuesday, October 27, 2020 Approved
Invantive(R) Estate for Windows 17.32.268 122 Monday, October 26, 2020 Approved
Invantive(R) Estate for Windows 17.32.267 120 Friday, October 23, 2020 Approved
Invantive(R) Estate for Windows 17.32.266 79 Tuesday, October 13, 2020 Approved
Invantive(R) Estate for Windows 17.32.264 109 Saturday, September 19, 2020 Approved
Invantive(R) Estate for Windows 17.32.263 119 Monday, September 14, 2020 Approved
Invantive(R) Estate for Windows 17.32.259 118 Tuesday, September 1, 2020 Approved
Invantive(R) Estate for Windows 17.32.258 120 Monday, August 31, 2020 Approved
Invantive(R) Estate for Windows 17.32.256 139 Thursday, August 27, 2020 Approved
Invantive(R) Estate for Windows 17.32.250 114 Thursday, August 13, 2020 Approved
Invantive(R) Estate for Windows 17.32.249 107 Thursday, August 6, 2020 Approved
Invantive(R) Estate for Windows 17.32.228 109 Wednesday, July 8, 2020 Approved
Invantive(R) Estate for Windows 17.32.227 116 Monday, July 6, 2020 Approved
Invantive(R) Estate for Windows 17.32.224 99 Friday, June 19, 2020 Approved
Invantive(R) Estate for Windows 17.32.220 127 Tuesday, June 16, 2020 Approved
Invantive(R) Estate for Windows 17.32.217 123 Tuesday, May 26, 2020 Approved
Invantive(R) Estate for Windows 17.32.213 140 Friday, May 8, 2020 Approved
Invantive(R) Estate for Windows 17.32.211 137 Thursday, May 7, 2020 Approved
Invantive(R) Estate for Windows 17.32.191 127 Thursday, March 19, 2020 Approved
Invantive(R) Estate for Windows 17.32.187 143 Friday, March 13, 2020 Approved
Invantive(R) Estate for Windows 17.32.174 165 Wednesday, February 12, 2020 Approved
Invantive(R) Estate for Windows 17.32.170 128 Saturday, February 8, 2020 Approved
Invantive(R) Estate for Windows 17.32.158 130 Wednesday, January 15, 2020 Approved
Invantive(R) Estate for Windows 17.32.154 149 Monday, January 13, 2020 Approved
Invantive(R) Estate for Windows 17.32.146 149 Thursday, January 2, 2020 Approved
Invantive(R) Estate for Windows 17.32.143 150 Tuesday, December 24, 2019 Approved
Invantive(R) Estate for Windows 17.32.141 142 Monday, December 23, 2019 Approved
Invantive(R) Estate for Windows 17.32.140 134 Friday, December 20, 2019 Approved
Invantive(R) Estate for Windows 17.32.123 136 Tuesday, November 26, 2019 Approved
Invantive(R) Estate for Windows 17.32.76 143 Friday, October 4, 2019 Approved
Invantive(R) Estate for Windows 17.32.55 172 Wednesday, August 21, 2019 Approved
Invantive(R) Estate for Windows 17.32.51 196 Tuesday, August 13, 2019 Approved
Invantive(R) Estate for Windows 17.32.50 154 Monday, August 12, 2019 Approved
Invantive(R) Estate for Windows 17.32.49 155 Monday, August 12, 2019 Approved
Invantive(R) Estate for Windows 17.32.15 199 Monday, June 10, 2019 Approved
Invantive(R) Estate for Windows 17.31.87-BETA 183 Friday, June 14, 2019 Approved
Invantive(R) Estate for Windows 17.31.9-BETA 181 Tuesday, April 16, 2019 Approved
Invantive(R) Estate for Windows 17.31.7-BETA 180 Tuesday, April 16, 2019 Approved
Invantive(R) Estate for Windows 17.31.5-BETA 219 Wednesday, April 10, 2019 Approved
Invantive(R) Estate for Windows 17.31.4-BETA 159 Thursday, March 7, 2019 Approved
Invantive(R) Estate for Windows 17.31.3-BETA 153 Wednesday, March 6, 2019 Approved
Invantive(R) Estate for Windows 17.31.2-BETA 239 Thursday, February 7, 2019 Approved
Invantive(R) Estate for Windows 17.31.0-BETA 178 Tuesday, January 22, 2019 Approved
Invantive(R) Estate for Windows 17.30.0 186 Thursday, January 10, 2019 Approved
Invantive(R) Estate for Windows 17.29.11-BETA 208 Friday, December 28, 2018 Approved
Invantive(R) Estate for Windows 17.29.8-BETA 200 Friday, December 28, 2018 Approved
Invantive Estate for Windows 17.29.7-BETA 181 Thursday, December 6, 2018 Approved
Invantive Estate for Windows 17.29.6-BETA 167 Thursday, December 6, 2018 Approved
Invantive Estate for Windows 17.29.5-BETA 179 Thursday, December 6, 2018 Approved
Invantive Estate for Windows 17.29.4-BETA 193 Tuesday, December 4, 2018 Approved
Invantive Estate for Windows 17.29.1-BETA 181 Friday, November 16, 2018 Approved
Invantive Estate for Windows 17.27.2-BETA 208 Wednesday, September 19, 2018 Approved
Invantive Estate for Windows 17.27.1-BETA 231 Monday, September 17, 2018 Approved
Invantive Estate for Windows 17.27.0-BETA 214 Friday, September 14, 2018 Approved
Invantive Estate for Windows 17.26.3 212 Monday, September 3, 2018 Approved
Invantive Estate for Windows 17.26.2 221 Monday, September 3, 2018 Approved
Invantive Estate for Windows 17.25.0-BETA 210 Monday, August 13, 2018 Approved
Invantive Estate for Windows 17.24.1 208 Wednesday, July 11, 2018 Approved
Invantive Estate for Windows 17.24.0 216 Thursday, June 14, 2018 Approved
Invantive Estate for Windows 17.23.4-BETA 263 Thursday, May 24, 2018 Exempted
Invantive Estate for Windows 17.23.3-BETA 246 Thursday, May 17, 2018 Exempted
Invantive Estate for Windows 17.23.2-BETA 244 Saturday, May 5, 2018 Exempted
Invantive Estate for Windows 17.23.1-BETA 255 Thursday, May 3, 2018 Exempted
Invantive Estate for Windows 17.23.0-BETA 259 Monday, April 23, 2018 Exempted
Invantive Estate for Windows 17.12.1-BETA 263 Monday, April 9, 2018 Exempted
Invantive Estate for Windows 17.12.0-BETA 283 Friday, March 30, 2018 Exempted
Invantive Estate for Windows 17.11.29-BETA 294 Thursday, March 29, 2018 Exempted
Invantive Estate for Windows 17.11.28-BETA 283 Wednesday, March 28, 2018 Exempted
Invantive Estate for Windows 17.11.27-BETA 280 Wednesday, March 28, 2018 Exempted
Invantive Estate for Windows 17.11.26-BETA 249 Wednesday, March 28, 2018 Exempted
Invantive Estate for Windows 17.11.25-BETA 262 Tuesday, March 27, 2018 Exempted
Invantive Estate for Windows 17.11.21-BETA 259 Saturday, March 24, 2018 Exempted
Invantive Estate for Windows 17.11.17-RC 283 Sunday, March 4, 2018 Exempted
Invantive Estate for Windows 17.11.15-BETA 263 Monday, February 12, 2018 Exempted
Invantive Estate for Windows 17.11.14-BETA 237 Sunday, February 11, 2018 Exempted
Invantive Estate for Windows 17.11.12-RC 300 Sunday, November 26, 2017 Exempted
Invantive Estate for Windows 17.10.8 354 Wednesday, October 11, 2017 Approved

Included components:

  • Invantive.Estate.Windows 22.1.48-BETA

Version 22.1.24-BETA, released 2022-01-12.

Enhancements:

  • Add new splashscreen.
  • Add timezone functionality.
  • Improve user interface language defaulting.

Version 20.2.196, released 2022-01-03.

Enhancements:

  • Add forums buttons to various ribbons and make online assistance configurable.
  • Add images.
  • Add new OG images.
  • Add Oracle 21 support.
  • Switch to IPv6.

Bug fixes:

  • Correct translation.
  • Fix IPv6 issue.
  • Improve file handling of session IO log.

Version 20.1.532-BETA, released 2020-07-10.

Enhancements:

  • Add barcode to units and end payment holidays to parties.
  • Add barcode.
  • Add option to close application on console menus.
  • Add price lists to explorer.
  • Add search on person identity.
  • Add unt_datum_start_gebruiksrecht and unt_datum_einde_gebruiksrecht fields to unit search.
  • Allow mail not to be sent.
  • Avoid UTF-8 encoding of mail subjects when there are no special characters in them.
  • Check country of license owner.
  • Default the language code when adding a person to an organisation.
  • Disable check bubsute041.
  • Extend SMTP conversation by message codes.
  • Improve data container ID determination.
  • Include non-primary key field value of 'field' in update on ActiveCampaign contact custom field.
  • Make non-dependent of tasks for licenses.
  • No longer send copy of license key to support mail.
  • Search on barcode.

Bug fixes:

  • Do not also close search result window when search window is closed automatically.
  • Fix log on bug.
  • Fix ORA-06502 on large emails.
  • Permanently disable strong name verification.
  • Remove superfluous spacing in error message.

Version 17.33.89-BETA, released 2019-08-09.

Enhancements:

  • Improve error handling when URL of report server can not be reached.
  • Perform check that customer is not temporarily blocked when generating a license.

Bug fixes:

  • Add missing view element to GIS.
  • Always enable main tab, don't show license dialog when function is not licensed.
  • Fix bubsuty024 to exclude check on session ID from report server.
  • Fix installation of database requiring settings.
  • Improve handling of internal NullReferenceException in Office VSTO.
  • Re-enable use of TLS 1.0 in combination with Invantive Estate and Vision.
  • Refactoring for case sensitive column of Oracle driver.

Version 17.31.87-BETA, released 2019-04-16.

Enhancements:

  • Add new splash screen for Estate.
  • Add references to organization and unit.
  • Add support for Oracle 19 client drivers.
  • Changes due to adding support for Linux/Unix/Mac OS on Invantive Producer products.
  • Display splash screen on startup of Invantive Business.
  • Improve performance by reducing use of DateTime.Now.
  • Move to Office Starter for faster start-up.
  • Reduce chance of internal Office NullReferenceException.
  • Use .NET 4.7 auto scaling for high DPI [ITGEN-4219].

Bug fixes:

  • Correct default button in message boxes.
  • Fix default button on sync.
  • Fix itgenefd004 error on 3 entities having number with maximum length in characters.
  • Include user information from middle tiers such as Producer or Estate in connection state.
  • Only memorize search results that can be opened later.

Version 17.29.7-BETA, released 2018-12-05.

Enhancements:

  • Add elaboration on what currencies are used.
  • Exclude settings.xml from session initiation procedure.
  • Increase maximum size of result set to above 4 billion rows.
  • Update business layer.

Bug fixes:

  • Correctly determine user name from credentials container.
  • Correctly hand over country to Exact Online.
  • Fix native log on [ITGEN-3595].
  • Make referenced code table primary keys updateable again.
  • Remove settings from session log ons.

Version 17.27.0-BETA, released 2018-09-09.

Enhancements:

  • Support Oracle 18c RDBMS client drivers.

Bug fixes:

  • Add proper escaping of reserved words across all SQL platforms.

Version 17.24.1, released 2018-06-21.

Bug fixes:

  • Reduce maximum load on UNDO tablespace when there are many messages to purge.

Version 17.12.1-BETA, released 2018-04-09.

Bug fixes:

  • Prevent using connection pooling on Estate through the web service.

Version 17.11.29-BETA, released 2018-03-29.

Enhancements:

  • Add check on connection pooling in Estate.
  • Add fields for temporarily blocking parties as customer or supplier.
  • Add VAT Purchase fields for organisation.
  • Column for split VAT sales/purchase.
  • Improve startup with errors.
  • Indicate with search unit whether it is still active.

Bug fixes:

  • Add Copy function to Unit Relations form.
  • Avoid duplicate file names for saving attachments from emails to Invantive Vision.
  • Avoid JSON errors by making email address cache public.
  • Avoid Null Reference error when changing license key after logging on.
  • Avoid pop-up for license window in Outlook on startup and re-connect.
  • Clarify error message when HTTP fetch fails.
  • Correct file names for multiple attachments in one mail when archiving.
  • Correctly upload gender and title to Exact Online through XML API.
  • Fix parameter binding.
  • Raise error when an Invantive SQL Oracle connection is used instead of native SQL.
  • Show correct product name in Diagnostics window.

Discussion for the Invantive(R) Estate for Windows Package

Ground Rules:

  • This discussion is only about Invantive(R) Estate for Windows and the Invantive(R) Estate for Windows 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) Estate for Windows, 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