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:

26,544

Downloads of v 17.33.88-BETA:

179

Last Update:

03 Sep 2019

Package Maintainer(s):

Software Author(s):

  • Invantive Software B.V.

Tags:

estate invantive outlook project control real estate development

Invantive(R) Estate for Outlook

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

  • 1
  • 2
  • 3

17.33.88-BETA | Updated: 03 Sep 2019

Downloads:

26,544

Downloads of v 17.33.88-BETA:

179

Maintainer(s):

Software Author(s):

  • Invantive Software B.V.

Invantive(R) Estate for Outlook 17.33.88-BETA

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

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Invantive Software B.V. The inclusion of Invantive Software B.V. trademark(s), if any, upon this webpage is solely to identify Invantive Software B.V. goods or services and not for commercial purposes.

  • 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:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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

>

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

>

To uninstall Invantive(R) Estate for Outlook, 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-outlook -y --source="'INTERNAL REPO URL'" --version="'17.33.88-BETA'" --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-outlook -y --source="'INTERNAL REPO URL'" --version="'17.33.88-BETA'" --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-outlook
  win_chocolatey:
    name: invantive-estate-for-outlook
    version: '17.33.88-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-outlook' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '17.33.88-BETA'
  options  '--prerelease'
end

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


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

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


package { 'invantive-estate-for-outlook':
  ensure          => '17.33.88-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.

NOTE

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

Package Approved

This package was approved as a trusted package on 03 Sep 2019.

Description

Invantive Estate for Outlook


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

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

$packageArgs = @{
  packageName = $packageName
  fileType = 'MSI'
  url = 'https://download.invantive.com/release/msi/Invantive%20Estate%20for%20Outlook-17.33.88-BETA.msi'
  url64bit = 'https://download.invantive.com/release/msi/Invantive%20Estate%20for%20Outlook-17.33.88-BETA.msi'
  softwareName = 'Invantive Estate for Outlook'
  checksum = 'EB8C05C4F5F39FC1FCB7CECCFBF4BF0D85C77EF2EFFBE43A8928D98C0BED05DA'
  checksumType = 'sha256'
  checksum64 = 'EB8C05C4F5F39FC1FCB7CECCFBF4BF0D85C77EF2EFFBE43A8928D98C0BED05DA'
  checksumType64 = 'sha256'
  silentArgs = "/qn /norestart /l*v `"$env:Temp\invantive-estate-for-outlook-17.33.88-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 Outlook 22.1.48-BETA 107 Monday, May 16, 2022 Approved
Invantive(R) Estate for Outlook 22.1.47-BETA 79 Sunday, May 15, 2022 Approved
Invantive(R) Estate for Outlook 22.1.46-BETA 80 Sunday, May 15, 2022 Approved
Invantive(R) Estate for Outlook 22.1.40-BETA 87 Thursday, May 12, 2022 Approved
Invantive(R) Estate for Outlook 22.1.39-BETA 82 Tuesday, May 10, 2022 Approved
Invantive(R) Estate for Outlook 22.1.38-BETA 83 Monday, May 9, 2022 Approved
Invantive(R) Estate for Outlook 22.1.37-BETA 70 Sunday, May 8, 2022 Approved
Invantive(R) Estate for Outlook 22.1.36-BETA 71 Saturday, May 7, 2022 Approved
Invantive(R) Estate for Outlook 22.1.35-BETA 77 Wednesday, May 4, 2022 Approved
Invantive(R) Estate for Outlook 22.1.31-BETA 75 Tuesday, April 5, 2022 Approved
Invantive(R) Estate for Outlook 22.1.21-BETA 68 Sunday, March 13, 2022 Approved
Invantive(R) Estate for Outlook 22.0.186 78 Friday, May 13, 2022 Approved
Invantive(R) Estate for Outlook 22.0.183 95 Tuesday, May 10, 2022 Approved
Invantive(R) Estate for Outlook 22.0.182 75 Tuesday, May 10, 2022 Approved
Invantive(R) Estate for Outlook 22.0.180 86 Tuesday, May 10, 2022 Approved
Invantive(R) Estate for Outlook 22.0.176 66 Monday, May 9, 2022 Approved
Invantive(R) Estate for Outlook 22.0.170 77 Monday, May 9, 2022 Approved
Invantive(R) Estate for Outlook 22.0.169 74 Sunday, May 8, 2022 Approved
Invantive(R) Estate for Outlook 22.0.168 74 Sunday, May 8, 2022 Approved
Invantive(R) Estate for Outlook 22.0.167 76 Sunday, May 8, 2022 Approved
Invantive(R) Estate for Outlook 22.0.166 83 Saturday, May 7, 2022 Approved
Invantive(R) Estate for Outlook 22.0.165 70 Friday, May 6, 2022 Approved
Invantive(R) Estate for Outlook 22.0.164 66 Friday, May 6, 2022 Approved
Invantive(R) Estate for Outlook 22.0.163 64 Thursday, May 5, 2022 Approved
Invantive(R) Estate for Outlook 22.0.162 77 Thursday, May 5, 2022 Approved
Invantive(R) Estate for Outlook 22.0.161 76 Thursday, May 5, 2022 Approved
Invantive(R) Estate for Outlook 22.0.160 71 Wednesday, May 4, 2022 Approved
Invantive(R) Estate for Outlook 22.0.159 88 Wednesday, May 4, 2022 Approved
Invantive(R) Estate for Outlook 22.0.158 76 Tuesday, May 3, 2022 Approved
Invantive(R) Estate for Outlook 22.0.156 63 Monday, May 2, 2022 Approved
Invantive(R) Estate for Outlook 22.0.155 75 Sunday, May 1, 2022 Approved
Invantive(R) Estate for Outlook 22.0.153 73 Friday, April 29, 2022 Approved
Invantive(R) Estate for Outlook 22.0.152 77 Friday, April 29, 2022 Approved
Invantive(R) Estate for Outlook 22.0.151 88 Thursday, April 28, 2022 Approved
Invantive(R) Estate for Outlook 22.0.149 78 Tuesday, April 26, 2022 Approved
Invantive(R) Estate for Outlook 22.0.142 69 Saturday, April 23, 2022 Approved
Invantive(R) Estate for Outlook 22.0.141 70 Friday, April 22, 2022 Approved
Invantive(R) Estate for Outlook 22.0.140 77 Thursday, April 21, 2022 Approved
Invantive(R) Estate for Outlook 22.0.138 64 Thursday, April 21, 2022 Approved
Invantive(R) Estate for Outlook 22.0.136 78 Wednesday, April 20, 2022 Approved
Invantive(R) Estate for Outlook 22.0.135 72 Tuesday, April 19, 2022 Approved
Invantive(R) Estate for Outlook 22.0.134 68 Tuesday, April 19, 2022 Approved
Invantive(R) Estate for Outlook 22.0.130 83 Monday, April 18, 2022 Approved
Invantive(R) Estate for Outlook 22.0.128 68 Saturday, April 16, 2022 Approved
Invantive(R) Estate for Outlook 22.0.127 69 Friday, April 15, 2022 Approved
Invantive(R) Estate for Outlook 22.0.126 69 Friday, April 15, 2022 Approved
Invantive(R) Estate for Outlook 22.0.125 72 Thursday, April 14, 2022 Approved
Invantive(R) Estate for Outlook 22.0.124 84 Thursday, April 14, 2022 Approved
Invantive(R) Estate for Outlook 22.0.123 86 Wednesday, April 13, 2022 Approved
Invantive(R) Estate for Outlook 22.0.122 70 Wednesday, April 13, 2022 Approved
Invantive(R) Estate for Outlook 22.0.93 80 Wednesday, March 30, 2022 Approved
Invantive(R) Estate for Outlook 22.0.92 78 Wednesday, March 30, 2022 Approved
Invantive(R) Estate for Outlook 22.0.90 87 Thursday, March 24, 2022 Approved
Invantive(R) Estate for Outlook 22.0.89 66 Thursday, March 24, 2022 Approved
Invantive(R) Estate for Outlook 22.0.88 79 Wednesday, March 23, 2022 Approved
Invantive(R) Estate for Outlook 22.0.87 70 Wednesday, March 23, 2022 Approved
Invantive(R) Estate for Outlook 22.0.85 84 Friday, March 18, 2022 Approved
Invantive(R) Estate for Outlook 22.0.84 76 Thursday, March 17, 2022 Approved
Invantive(R) Estate for Outlook 22.0.81 67 Wednesday, March 16, 2022 Approved
Invantive(R) Estate for Outlook 22.0.80 83 Tuesday, March 15, 2022 Approved
Invantive(R) Estate for Outlook 22.0.76 80 Sunday, March 13, 2022 Approved
Invantive(R) Estate for Outlook 22.0.75 66 Saturday, March 12, 2022 Approved
Invantive(R) Estate for Outlook 20.2.184 102 Friday, December 31, 2021 Approved
Invantive(R) Estate for Outlook 20.2.181 95 Thursday, December 30, 2021 Approved
Invantive(R) Estate for Outlook 20.2.180 77 Thursday, December 30, 2021 Approved
Invantive(R) Estate for Outlook 20.2.17 118 Friday, September 17, 2021 Approved
Invantive(R) Estate for Outlook 20.2.15 88 Wednesday, September 15, 2021 Approved
Invantive(R) Estate for Outlook 20.2.10 80 Saturday, September 11, 2021 Approved
Invantive(R) Estate for Outlook 20.2.3 105 Friday, September 3, 2021 Approved
Invantive(R) Estate for Outlook 20.2.1-RC 100 Wednesday, September 1, 2021 Approved
Invantive(R) Estate for Outlook 20.2.0-RC 92 Wednesday, September 1, 2021 Approved
Invantive(R) Estate for Outlook 20.1.532-BETA 112 Thursday, August 5, 2021 Approved
Invantive(R) Estate for Outlook 20.0.0 332 Sunday, March 29, 2020 Approved
Invantive(R) Estate for Outlook 17.33.89-BETA 215 Tuesday, September 3, 2019 Approved
Invantive(R) Estate for Outlook 17.33.88-BETA 179 Tuesday, September 3, 2019 Approved
Invantive(R) Estate for Outlook 17.32.273 99 Thursday, August 5, 2021 Approved
Invantive(R) Estate for Outlook 17.32.271 144 Thursday, November 12, 2020 Approved
Invantive(R) Estate for Outlook 17.32.270 134 Tuesday, November 10, 2020 Approved
Invantive(R) Estate for Outlook 17.32.269 155 Tuesday, October 27, 2020 Approved
Invantive(R) Estate for Outlook 17.32.268 141 Monday, October 26, 2020 Approved
Invantive(R) Estate for Outlook 17.32.267 146 Friday, October 23, 2020 Approved
Invantive(R) Estate for Outlook 17.32.266 167 Tuesday, October 13, 2020 Approved
Invantive(R) Estate for Outlook 17.32.264 152 Saturday, September 19, 2020 Approved
Invantive(R) Estate for Outlook 17.32.263 141 Monday, September 14, 2020 Approved
Invantive(R) Estate for Outlook 17.32.259 130 Tuesday, September 1, 2020 Approved
Invantive(R) Estate for Outlook 17.32.258 133 Monday, August 31, 2020 Approved
Invantive(R) Estate for Outlook 17.32.256 146 Thursday, August 27, 2020 Approved
Invantive(R) Estate for Outlook 17.32.250 148 Thursday, August 13, 2020 Approved
Invantive(R) Estate for Outlook 17.32.228 160 Wednesday, July 8, 2020 Approved
Invantive(R) Estate for Outlook 17.32.227 147 Monday, July 6, 2020 Approved
Invantive(R) Estate for Outlook 17.32.224 163 Friday, June 19, 2020 Approved
Invantive(R) Estate for Outlook 17.32.220 169 Tuesday, June 16, 2020 Approved
Invantive(R) Estate for Outlook 17.32.217 164 Tuesday, May 26, 2020 Approved
Invantive(R) Estate for Outlook 17.32.213 171 Friday, May 8, 2020 Approved
Invantive(R) Estate for Outlook 17.32.211 217 Thursday, May 7, 2020 Approved
Invantive(R) Estate for Outlook 17.32.205 151 Saturday, April 4, 2020 Approved
Invantive(R) Estate for Outlook 17.32.187 176 Friday, March 13, 2020 Approved
Invantive(R) Estate for Outlook 17.32.174 229 Wednesday, February 12, 2020 Approved
Invantive(R) Estate for Outlook 17.32.170 195 Saturday, February 8, 2020 Approved
Invantive(R) Estate for Outlook 17.32.167 195 Saturday, February 1, 2020 Approved
Invantive(R) Estate for Outlook 17.32.158 192 Wednesday, January 15, 2020 Approved
Invantive(R) Estate for Outlook 17.32.156 208 Monday, January 13, 2020 Approved
Invantive(R) Estate for Outlook 17.32.154 204 Monday, January 13, 2020 Approved
Invantive(R) Estate for Outlook 17.32.146 174 Thursday, January 2, 2020 Approved
Invantive(R) Estate for Outlook 17.32.144 193 Thursday, January 2, 2020 Approved
Invantive(R) Estate for Outlook 17.32.143 191 Tuesday, December 24, 2019 Approved
Invantive(R) Estate for Outlook 17.32.140 189 Friday, December 20, 2019 Approved
Invantive(R) Estate for Outlook 17.32.139 198 Tuesday, December 17, 2019 Approved
Invantive(R) Estate for Outlook 17.32.123 205 Tuesday, November 26, 2019 Approved
Invantive(R) Estate for Outlook 17.32.76 201 Friday, October 4, 2019 Approved
Invantive(R) Estate for Outlook 17.32.55 281 Wednesday, August 21, 2019 Approved
Invantive(R) Estate for Outlook 17.32.51 219 Tuesday, August 13, 2019 Approved
Invantive(R) Estate for Outlook 17.32.50 218 Monday, August 12, 2019 Approved
Invantive(R) Estate for Outlook 17.32.49 181 Monday, August 12, 2019 Approved
Invantive(R) Estate for Outlook 17.32.42 215 Tuesday, July 2, 2019 Approved
Invantive(R) Estate for Outlook 17.32.15 209 Monday, June 10, 2019 Approved
Invantive(R) Estate for Outlook 17.31.87-BETA 245 Friday, June 14, 2019 Approved
Invantive(R) Estate for Outlook 17.31.9-BETA 218 Tuesday, April 16, 2019 Approved
Invantive(R) Estate for Outlook 17.31.8-BETA 235 Tuesday, April 16, 2019 Approved
Invantive(R) Estate for Outlook 17.31.7-BETA 224 Tuesday, April 16, 2019 Approved
Invantive(R) Estate for Outlook 17.31.6-BETA 227 Monday, April 15, 2019 Approved
Invantive(R) Estate for Outlook 17.31.5-BETA 234 Friday, April 12, 2019 Approved
Invantive(R) Estate for Outlook 17.31.4-BETA 196 Thursday, March 7, 2019 Approved
Invantive(R) Estate for Outlook 17.31.3-BETA 231 Wednesday, March 6, 2019 Approved
Invantive(R) Estate for Outlook 17.31.2-BETA 246 Thursday, February 7, 2019 Approved
Invantive(R) Estate for Outlook 17.31.0-BETA 214 Tuesday, January 22, 2019 Approved
Invantive(R) Estate for Outlook 17.30.0 239 Thursday, January 10, 2019 Approved
Invantive(R) Estate for Outlook 17.29.11-BETA 217 Friday, December 28, 2018 Approved
Invantive(R) Estate for Outlook 17.29.9-BETA 250 Friday, December 28, 2018 Approved
Invantive(R) Estate for Outlook 17.29.8-BETA 226 Friday, December 28, 2018 Approved
Invantive Estate for Outlook 17.29.7-BETA 227 Thursday, December 6, 2018 Approved
Invantive Estate for Outlook 17.29.6-BETA 212 Thursday, December 6, 2018 Approved
Invantive Estate for Outlook 17.29.5-BETA 239 Thursday, December 6, 2018 Approved
Invantive Estate for Outlook 17.29.4-BETA 235 Tuesday, December 4, 2018 Approved
Invantive Estate for Outlook 17.29.1-BETA 249 Friday, November 16, 2018 Approved
Invantive Estate for Outlook 17.27.2-BETA 261 Wednesday, September 19, 2018 Approved
Invantive Estate for Outlook 17.27.1-BETA 275 Monday, September 17, 2018 Approved
Invantive Estate for Outlook 17.27.0-BETA 279 Friday, September 14, 2018 Approved
Invantive Estate for Outlook 17.26.3 292 Monday, September 3, 2018 Approved
Invantive Estate for Outlook 17.25.0-BETA 254 Monday, August 13, 2018 Approved
Invantive Estate for Outlook 17.24.1 308 Wednesday, July 11, 2018 Approved
Invantive Estate for Outlook 17.24.0 309 Thursday, June 14, 2018 Approved
Invantive Estate for Outlook 17.23.4-BETA 311 Thursday, May 24, 2018 Exempted
Invantive Estate for Outlook 17.23.3-BETA 304 Thursday, May 17, 2018 Exempted
Invantive Estate for Outlook 17.23.2-BETA 272 Saturday, May 5, 2018 Exempted
Invantive Estate for Outlook 17.23.1-BETA 301 Thursday, May 3, 2018 Exempted
Invantive Estate for Outlook 17.23.0-BETA 337 Monday, April 23, 2018 Exempted
Invantive Estate for Outlook 17.12.1-BETA 314 Monday, April 9, 2018 Exempted
Invantive Estate for Outlook 17.12.0-BETA 351 Friday, March 30, 2018 Exempted
Invantive Estate for Outlook 17.11.29-BETA 317 Thursday, March 29, 2018 Exempted
Invantive Estate for Outlook 17.11.28-BETA 422 Wednesday, March 28, 2018 Exempted
Invantive Estate for Outlook 17.11.27-BETA 313 Wednesday, March 28, 2018 Exempted
Invantive Estate for Outlook 17.11.26-BETA 317 Wednesday, March 28, 2018 Exempted
Invantive Estate for Outlook 17.11.25-BETA 306 Tuesday, March 27, 2018 Exempted
Invantive Estate for Outlook 17.11.24-BETA 333 Tuesday, March 27, 2018 Exempted
Invantive Estate for Outlook 17.11.21-BETA 316 Saturday, March 24, 2018 Exempted
Invantive Estate for Outlook 17.11.17-RC 358 Sunday, March 4, 2018 Exempted
Invantive Estate for Outlook 17.11.15-BETA 380 Monday, February 12, 2018 Exempted
Invantive Estate for Outlook 17.11.14-BETA 345 Sunday, February 11, 2018 Exempted
Invantive Estate for Outlook 17.11.12-RC 440 Sunday, November 26, 2017 Exempted
Invantive Estate for Outlook 17.10.7 374 Wednesday, October 11, 2017 Approved

Included components:

  • Invantive.Estate.Windows 17.33.88-BETA
  • Invantive.Outlook.Starter 17.32.15
    Included Components:
  • Various Microsoft-supplied components

Version 17.33.85-BETA, released 2019-08-29.

Enhancements:

  • Perform check that customer is not temporarily blocked when generating a license.
  • Refactoring to allow pre and post condition checks on fetching data from providers.

Bug fixes:

  • Always enable main tab, don't show license dialog when function is not licensed.
  • Add missing view element to gis.
  • Improve handling of internal NullReferenceException in Office VSTO.

Version 17.31.87-BETA, released 2019-06-14.

Enhancements:

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

Bug fixes:

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

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

Enhancements:

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

Bug fixes:

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

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

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.

Enhancements:

  • Add check on connection pooling in Estate.
  • 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.
  • Add fields for temporarily blocking parties as customer or supplier.

Bug fixes:

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

Discussion for the Invantive(R) Estate for Outlook Package

Ground Rules:

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