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

Invantive Bridge for Power BI Users 20.0.0

This is not the latest version of Invantive Bridge for Power BI Users available.

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Reboot required due to dependencies.

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Invantive Bridge for Power BI Users, run the following command from the command line or from PowerShell:

>

To upgrade Invantive Bridge for Power BI Users, run the following command from the command line or from PowerShell:

>

To uninstall Invantive Bridge for Power BI Users, 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-bridge-power-bi-users -y --source="'INTERNAL REPO URL'" --version="'20.0.0'" [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-bridge-power-bi-users -y --source="'INTERNAL REPO URL'" --version="'20.0.0'" 
$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-bridge-power-bi-users
  win_chocolatey:
    name: invantive-bridge-power-bi-users
    version: '20.0.0'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'invantive-bridge-power-bi-users' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '20.0.0'
end

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


cChocoPackageInstaller invantive-bridge-power-bi-users
{
    Name     = "invantive-bridge-power-bi-users"
    Version  = "20.0.0"
    Source   = "INTERNAL REPO URL"
}

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


package { 'invantive-bridge-power-bi-users':
  ensure   => '20.0.0',
  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 28 Mar 2020.

Description

Invantive Bridge


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

$packageName= 'invantive-bridge-power-bi-users'

$packageArgs = @{
  packageName = $packageName
  fileType = 'MSI'
  url = 'https://download.invantive.com/release/msi/Invantive%20Bridge%20for%20Power%20BI%20Users-20.0.0.msi'
  url64bit = 'https://download.invantive.com/release/msi/Invantive%20Bridge%20for%20Power%20BI%20Users-20.0.0.msi'
  softwareName = 'Invantive Bridge for Power BI Users'
  checksum = '98D2FE2A766C487E432CFDE6AB91423082328065280DAABB4C057A81D9457EB4'
  checksumType = 'sha256'
  checksum64 = '98D2FE2A766C487E432CFDE6AB91423082328065280DAABB4C057A81D9457EB4'
  checksumType64 = 'sha256'
  silentArgs = "/qn /norestart /l*v `"$env:Temp\invantive-bridge-power-bi-users-20.0.0-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 Bridge for Power BI Users 22.1.48-BETA 64 Monday, May 16, 2022 Approved
Invantive Bridge for Power BI Users 22.1.47-BETA 49 Sunday, May 15, 2022 Approved
Invantive Bridge for Power BI Users 22.1.46-BETA 46 Sunday, May 15, 2022 Approved
Invantive Bridge for Power BI Users 22.1.40-BETA 41 Thursday, May 12, 2022 Approved
Invantive Bridge for Power BI Users 22.1.38-BETA 38 Monday, May 9, 2022 Approved
Invantive Bridge for Power BI Users 22.1.37-BETA 44 Sunday, May 8, 2022 Approved
Invantive Bridge for Power BI Users 22.1.36-BETA 37 Saturday, May 7, 2022 Approved
Invantive Bridge for Power BI Users 22.1.35-BETA 42 Wednesday, May 4, 2022 Approved
Invantive Bridge for Power BI Users 22.1.31-BETA 48 Monday, April 4, 2022 Approved
Invantive Bridge for Power BI Users 22.1.29-BETA 42 Sunday, April 3, 2022 Approved
Invantive Bridge for Power BI Users 22.1.27-BETA 47 Saturday, April 2, 2022 Approved
Invantive Bridge for Power BI Users 22.1.21-BETA 50 Sunday, March 13, 2022 Approved
Invantive Bridge for Power BI Users 22.1.6-BETA 56 Wednesday, February 2, 2022 Approved
Invantive Bridge for Power BI Users 22.0.186 53 Friday, May 13, 2022 Approved
Invantive Bridge for Power BI Users 22.0.183 42 Tuesday, May 10, 2022 Approved
Invantive Bridge for Power BI Users 22.0.182 44 Tuesday, May 10, 2022 Approved
Invantive Bridge for Power BI Users 22.0.177 46 Monday, May 9, 2022 Approved
Invantive Bridge for Power BI Users 22.0.176 43 Monday, May 9, 2022 Approved
Invantive Bridge for Power BI Users 22.0.170 43 Monday, May 9, 2022 Approved
Invantive Bridge for Power BI Users 22.0.169 47 Sunday, May 8, 2022 Approved
Invantive Bridge for Power BI Users 22.0.168 47 Sunday, May 8, 2022 Approved
Invantive Bridge for Power BI Users 22.0.167 46 Sunday, May 8, 2022 Approved
Invantive Bridge for Power BI Users 22.0.166 47 Saturday, May 7, 2022 Approved
Invantive Bridge for Power BI Users 22.0.165 42 Friday, May 6, 2022 Approved
Invantive Bridge for Power BI Users 22.0.164 41 Friday, May 6, 2022 Approved
Invantive Bridge for Power BI Users 22.0.163 41 Thursday, May 5, 2022 Approved
Invantive Bridge for Power BI Users 22.0.162 40 Thursday, May 5, 2022 Approved
Invantive Bridge for Power BI Users 22.0.161 41 Wednesday, May 4, 2022 Approved
Invantive Bridge for Power BI Users 22.0.160 48 Wednesday, May 4, 2022 Approved
Invantive Bridge for Power BI Users 22.0.159 42 Wednesday, May 4, 2022 Approved
Invantive Bridge for Power BI Users 22.0.158 49 Tuesday, May 3, 2022 Approved
Invantive Bridge for Power BI Users 22.0.157 46 Tuesday, May 3, 2022 Approved
Invantive Bridge for Power BI Users 22.0.156 45 Monday, May 2, 2022 Approved
Invantive Bridge for Power BI Users 22.0.155 48 Sunday, May 1, 2022 Approved
Invantive Bridge for Power BI Users 22.0.153 54 Friday, April 29, 2022 Approved
Invantive Bridge for Power BI Users 22.0.152 40 Friday, April 29, 2022 Approved
Invantive Bridge for Power BI Users 22.0.151 41 Thursday, April 28, 2022 Approved
Invantive Bridge for Power BI Users 22.0.150 46 Tuesday, April 26, 2022 Approved
Invantive Bridge for Power BI Users 22.0.149 51 Tuesday, April 26, 2022 Approved
Invantive Bridge for Power BI Users 22.0.142 44 Saturday, April 23, 2022 Approved
Invantive Bridge for Power BI Users 22.0.141 36 Friday, April 22, 2022 Approved
Invantive Bridge for Power BI Users 22.0.140 50 Thursday, April 21, 2022 Approved
Invantive Bridge for Power BI Users 22.0.138 53 Thursday, April 21, 2022 Approved
Invantive Bridge for Power BI Users 22.0.137 43 Wednesday, April 20, 2022 Approved
Invantive Bridge for Power BI Users 22.0.136 57 Wednesday, April 20, 2022 Approved
Invantive Bridge for Power BI Users 22.0.135 48 Tuesday, April 19, 2022 Approved
Invantive Bridge for Power BI Users 22.0.134 53 Tuesday, April 19, 2022 Approved
Invantive Bridge for Power BI Users 22.0.130 44 Monday, April 18, 2022 Approved
Invantive Bridge for Power BI Users 22.0.128 43 Saturday, April 16, 2022 Approved
Invantive Bridge for Power BI Users 22.0.127 42 Friday, April 15, 2022 Approved
Invantive Bridge for Power BI Users 22.0.126 48 Friday, April 15, 2022 Approved
Invantive Bridge for Power BI Users 22.0.125 50 Thursday, April 14, 2022 Approved
Invantive Bridge for Power BI Users 22.0.124 49 Thursday, April 14, 2022 Approved
Invantive Bridge for Power BI Users 22.0.123 42 Wednesday, April 13, 2022 Approved
Invantive Bridge for Power BI Users 22.0.122 46 Wednesday, April 13, 2022 Approved
Invantive Bridge for Power BI Users 22.0.121 51 Wednesday, April 13, 2022 Approved
Invantive Bridge for Power BI Users 22.0.120 39 Tuesday, April 12, 2022 Approved
Invantive Bridge for Power BI Users 22.0.118 47 Tuesday, April 12, 2022 Approved
Invantive Bridge for Power BI Users 22.0.117 55 Monday, April 11, 2022 Approved
Invantive Bridge for Power BI Users 22.0.116 46 Monday, April 11, 2022 Approved
Invantive Bridge for Power BI Users 22.0.115 51 Sunday, April 10, 2022 Approved
Invantive Bridge for Power BI Users 22.0.114 42 Saturday, April 9, 2022 Approved
Invantive Bridge for Power BI Users 22.0.111 42 Saturday, April 9, 2022 Approved
Invantive Bridge for Power BI Users 22.0.104 54 Wednesday, April 6, 2022 Approved
Invantive Bridge for Power BI Users 22.0.103 46 Tuesday, April 5, 2022 Approved
Invantive Bridge for Power BI Users 22.0.102 53 Monday, April 4, 2022 Approved
Invantive Bridge for Power BI Users 22.0.101 44 Sunday, April 3, 2022 Approved
Invantive Bridge for Power BI Users 22.0.99 42 Sunday, April 3, 2022 Approved
Invantive Bridge for Power BI Users 22.0.94 53 Thursday, March 31, 2022 Approved
Invantive Bridge for Power BI Users 22.0.93 36 Wednesday, March 30, 2022 Approved
Invantive Bridge for Power BI Users 22.0.92 41 Wednesday, March 30, 2022 Approved
Invantive Bridge for Power BI Users 22.0.91 49 Monday, March 28, 2022 Approved
Invantive Bridge for Power BI Users 22.0.90 47 Thursday, March 24, 2022 Approved
Invantive Bridge for Power BI Users 22.0.89 40 Thursday, March 24, 2022 Approved
Invantive Bridge for Power BI Users 22.0.88 47 Wednesday, March 23, 2022 Approved
Invantive Bridge for Power BI Users 22.0.87 44 Wednesday, March 23, 2022 Approved
Invantive Bridge for Power BI Users 22.0.86 41 Tuesday, March 22, 2022 Approved
Invantive Bridge for Power BI Users 22.0.85 47 Friday, March 18, 2022 Approved
Invantive Bridge for Power BI Users 22.0.84 50 Thursday, March 17, 2022 Approved
Invantive Bridge for Power BI Users 22.0.83 52 Thursday, March 17, 2022 Approved
Invantive Bridge for Power BI Users 22.0.82 39 Wednesday, March 16, 2022 Approved
Invantive Bridge for Power BI Users 22.0.81 41 Tuesday, March 15, 2022 Approved
Invantive Bridge for Power BI Users 22.0.80 48 Monday, March 14, 2022 Approved
Invantive Bridge for Power BI Users 22.0.76 43 Sunday, March 13, 2022 Approved
Invantive Bridge for Power BI Users 22.0.75 62 Saturday, March 12, 2022 Approved
Invantive Bridge for Power BI Users 22.0.74 40 Saturday, March 12, 2022 Approved
Invantive Bridge for Power BI Users 22.0.72 48 Friday, March 11, 2022 Approved
Invantive Bridge for Power BI Users 22.0.16 74 Wednesday, February 2, 2022 Approved
Invantive Bridge for Power BI Users 22.0.13 70 Friday, January 28, 2022 Approved
Invantive Bridge for Power BI Users 20.2.246 58 Thursday, January 20, 2022 Approved
Invantive Bridge for Power BI Users 20.2.196 60 Tuesday, January 4, 2022 Approved
Invantive Bridge for Power BI Users 20.2.172 53 Friday, December 24, 2021 Approved
Invantive Bridge for Power BI Users 20.2.151 75 Wednesday, December 8, 2021 Approved
Invantive Bridge for Power BI Users 20.2.86 71 Wednesday, November 3, 2021 Approved
Invantive Bridge for Power BI Users 20.2.3 71 Friday, September 3, 2021 Approved
Invantive Bridge for Power BI Users 20.2.0-RC 58 Wednesday, September 1, 2021 Approved
Invantive Bridge for Power BI Users 20.1.530-BETA 59 Wednesday, August 4, 2021 Approved
Invantive Bridge for Power BI Users 20.1.467-BETA 70 Friday, July 2, 2021 Approved
Invantive Bridge for Power BI Users 20.1.288-BETA 123 Friday, November 27, 2020 Exempted
Invantive Bridge for Power BI Users 20.1.20-BETA 131 Saturday, May 2, 2020 Approved
Invantive Bridge for Power BI Users 20.0.131 115 Tuesday, December 15, 2020 Approved
Invantive Bridge for Power BI Users 20.0.128 92 Friday, December 4, 2020 Approved
Invantive Bridge for Power BI Users 20.0.123 99 Wednesday, November 25, 2020 Approved
Invantive Bridge for Power BI Users 20.0.116 107 Thursday, November 12, 2020 Approved
Invantive Bridge for Power BI Users 20.0.107 105 Tuesday, October 27, 2020 Approved
Invantive Bridge for Power BI Users 20.0.106 112 Friday, October 23, 2020 Approved
Invantive Bridge for Power BI Users 20.0.93 109 Saturday, September 19, 2020 Approved
Invantive Bridge for Power BI Users 20.0.90 98 Monday, September 14, 2020 Approved
Invantive Bridge for Power BI Users 20.0.84 103 Tuesday, September 1, 2020 Approved
Invantive Bridge for Power BI Users 20.0.82 96 Monday, August 31, 2020 Approved
Invantive Bridge for Power BI Users 20.0.79 103 Thursday, August 27, 2020 Approved
Invantive Bridge for Power BI Users 20.0.64 112 Thursday, August 6, 2020 Approved
Invantive Bridge for Power BI Users 20.0.51 102 Wednesday, August 5, 2020 Approved
Invantive Bridge for Power BI Users 20.0.48 105 Wednesday, July 8, 2020 Approved
Invantive Bridge for Power BI Users 20.0.40 117 Wednesday, June 17, 2020 Approved
Invantive Bridge for Power BI Users 20.0.37 102 Tuesday, June 16, 2020 Approved
Invantive Bridge for Power BI Users 20.0.33 120 Tuesday, May 26, 2020 Approved
Invantive Bridge for Power BI Users 20.0.23 140 Thursday, May 7, 2020 Approved
Invantive Bridge for Power BI Users 20.0.0 152 Saturday, March 28, 2020 Approved
Invantive Bridge for Power BI Users 17.33.108-BETA 159 Friday, September 20, 2019 Approved
Invantive Bridge for Power BI Users 17.32.258 100 Monday, August 31, 2020 Approved
Invantive Bridge for Power BI Users 17.32.256 98 Thursday, August 27, 2020 Approved
Invantive Bridge for Power BI Users 17.32.249 109 Thursday, August 6, 2020 Approved
Invantive Bridge for Power BI Users 17.32.228 91 Wednesday, July 8, 2020 Approved
Invantive Bridge for Power BI Users 17.32.223 108 Wednesday, June 17, 2020 Approved
Invantive Bridge for Power BI Users 17.32.220 91 Tuesday, June 16, 2020 Approved
Invantive Bridge for Power BI Users 17.32.217 117 Tuesday, May 26, 2020 Approved
Invantive Bridge for Power BI Users 17.32.213 102 Friday, May 8, 2020 Approved
Invantive Bridge for Power BI Users 17.32.211 126 Thursday, May 7, 2020 Approved
Invantive Bridge for Power BI Users 17.32.205 129 Saturday, April 4, 2020 Approved
Invantive Bridge for Power BI Users 17.32.188 132 Tuesday, March 17, 2020 Approved
Invantive Bridge for Power BI Users 17.32.171 155 Monday, February 10, 2020 Approved
Invantive Bridge for Power BI Users 17.32.170 112 Saturday, February 8, 2020 Approved
Invantive Bridge for Power BI Users 17.32.160 131 Tuesday, January 21, 2020 Approved
Invantive Bridge for Power BI Users 17.32.155 132 Monday, January 13, 2020 Approved
Invantive Bridge for Power BI Users 17.32.153 134 Thursday, January 9, 2020 Approved
Invantive Bridge for Power BI Users 17.32.139 153 Wednesday, December 18, 2019 Approved
Invantive Bridge for Power BI Users 17.32.123 162 Wednesday, November 20, 2019 Approved
Invantive Bridge for Power BI Users 17.32.100 166 Thursday, October 31, 2019 Approved
Invantive Bridge for Power BI Users 17.32.76 120 Friday, October 4, 2019 Approved
Invantive Bridge for Power BI Users 17.32.68 167 Wednesday, September 11, 2019 Approved
Invantive Bridge for Power BI Users 17.32.55 168 Wednesday, August 21, 2019 Approved
Invantive Bridge for Power BI Users 17.31.3-BETA 163 Sunday, February 17, 2019 Approved
Invantive Bridge for Power BI Users 17.31.2-BETA 174 Tuesday, February 12, 2019 Approved
Invantive Bridge for Power BI Users 17.31.1-BETA 154 Monday, January 28, 2019 Approved
Invantive Bridge for Power BI Users 17.31.0-BETA 192 Monday, January 21, 2019 Approved
Invantive Bridge for Power BI Users 17.30.0 191 Thursday, January 10, 2019 Approved
Invantive Bridge for Power BI Users 17.29.9-BETA 176 Monday, January 7, 2019 Approved
Invantive Bridge for Power BI Users 17.29.8-BETA 216 Friday, December 28, 2018 Approved
Invantive Bridge for Power BI Users 17.29.7-BETA 176 Friday, December 28, 2018 Approved
Invantive Bridge for Power BI Users 17.29.6-BETA 165 Friday, December 28, 2018 Approved
Invantive Bridge for Power BI Users 17.29.5-BETA 188 Friday, December 28, 2018 Approved
Invantive Bridge for Power BI Users 17.29.4-BETA 178 Friday, December 28, 2018 Approved
Invantive Bridge for Power BI Users 17.29.3-BETA 199 Friday, December 21, 2018 Approved
Invantive Bridge for Power BI Users 17.29.2-BETA 187 Tuesday, December 18, 2018 Approved
Invantive Bridge for Power BI Users 17.29.1-BETA 171 Saturday, November 10, 2018 Approved
Invantive Bridge for Power BI Users 17.29.0-BETA 198 Wednesday, October 31, 2018 Approved
Invantive Bridge for Power BI Users 17.28.0 209 Thursday, October 25, 2018 Approved
Invantive Bridge for Power BI Users 17.27.2-BETA 176 Monday, October 22, 2018 Approved
Invantive Bridge for Power BI Users 17.27.1-BETA 194 Saturday, October 13, 2018 Approved
Invantive Bridge for Power BI Users 17.27.0-BETA 179 Friday, September 14, 2018 Approved
Invantive Bridge for Power BI Users 17.25.1-BETA 189 Thursday, August 16, 2018 Approved
Invantive Bridge for Power BI Users 17.25.0-BETA 186 Wednesday, August 15, 2018 Approved
Invantive Bridge for Power BI Users 17.24.9 229 Wednesday, July 11, 2018 Approved
Invantive Bridge for Power BI Users 17.24.8 231 Tuesday, June 26, 2018 Approved
Invantive Bridge for Power BI Users 17.24.7 239 Tuesday, June 26, 2018 Approved
Invantive Bridge for Power BI Users 17.24.6 213 Tuesday, June 26, 2018 Approved
Invantive Bridge for Power BI Users 17.24.5 225 Tuesday, June 26, 2018 Approved
Invantive Bridge for Power BI Users 17.24.4 212 Tuesday, June 26, 2018 Approved
Invantive Bridge for Power BI Users 17.24.3 219 Tuesday, June 26, 2018 Approved
Invantive Bridge for Power BI Users 17.24.2 247 Friday, June 15, 2018 Approved
Invantive Bridge for Power BI Users 17.24.1 232 Thursday, June 14, 2018 Approved
Invantive Bridge for Power BI Users 17.24.0 223 Thursday, June 14, 2018 Approved
Invantive Bridge for Power BI Users 17.23.3-BETA 241 Friday, June 1, 2018 Approved
Invantive Bridge for Power BI Users 17.23.1-BETA 260 Friday, June 1, 2018 Approved
Invantive Bridge for Power BI Users 17.23.0-BETA 282 Friday, April 20, 2018 Approved
Invantive Bridge for Power BI Users 17.15.11-BETA 260 Friday, April 13, 2018 Approved
Invantive Bridge for Power BI Users 17.15.10-BETA 250 Friday, April 13, 2018 Approved
Invantive Bridge for Power BI Users 17.15.9-BETA 283 Friday, April 6, 2018 Approved
Invantive Bridge for Power BI Users 17.15.8-BETA 278 Friday, April 6, 2018 Approved
Invantive Bridge for Power BI Users 17.15.7-BETA 276 Friday, April 6, 2018 Approved
Invantive Bridge for Power BI Users 17.15.5-BETA 256 Thursday, April 5, 2018 Approved
Invantive Bridge for Power BI Users 17.15.4-BETA 303 Friday, March 9, 2018 Approved
Invantive Bridge for Power BI Users 17.15.0 333 Tuesday, March 6, 2018 Approved
Invantive Bridge for Power BI Users 17.14.22-BETA 256 Tuesday, March 6, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.21-BETA 285 Tuesday, March 6, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.18-BETA 294 Tuesday, March 6, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.17-BETA 287 Monday, March 5, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.15-RC 254 Sunday, March 4, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.14-BETA 284 Sunday, March 4, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.11-BETA 356 Friday, February 16, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.10-BETA 287 Thursday, February 15, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.8-BETA 293 Thursday, February 15, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.7-BETA 267 Wednesday, February 14, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.6-BETA 288 Thursday, December 28, 2017 Exempted
Invantive Bridge for Power BI Users 17.14.5-BETA 292 Friday, December 22, 2017 Exempted
Invantive Bridge for Power BI Users 17.14.3-RC 282 Friday, December 22, 2017 Exempted
Invantive Bridge for Power BI Users 17.14.2-RC 240 Friday, December 22, 2017 Exempted
Invantive Bridge for Power BI Users 17.14.1-RC 347 Friday, December 22, 2017 Exempted
Invantive Bridge for Power BI Users 17.14.0-RC 326 Friday, December 22, 2017 Exempted
Invantive Bridge for Power BI Users 17.13.4-RC 291 Friday, December 22, 2017 Exempted
Invantive Bridge for Power BI Users 17.13.0-RC 314 Monday, December 11, 2017 Exempted
Invantive Bridge for Power BI Users 17.12.4-RC 316 Monday, December 11, 2017 Exempted
Invantive Bridge for Power BI Users 17.12.3-RC 317 Monday, December 11, 2017 Exempted
Invantive Bridge for Power BI Users 17.12.2-RC 334 Monday, December 11, 2017 Exempted
Invantive Bridge for Power BI Users 17.12.1-RC 281 Monday, December 11, 2017 Exempted
Invantive Bridge for Power BI Users 17.12.0-RC 291 Friday, December 8, 2017 Exempted
Invantive Bridge for Power BI Users 17.11.11-RC 338 Thursday, December 7, 2017 Exempted
Invantive Bridge for Power BI Users 17.11.9-BETA 309 Saturday, November 25, 2017 Exempted
Invantive Bridge for Power BI Users 17.11.6-BETA 298 Saturday, November 25, 2017 Exempted

Included components:

  • Invantive.SQL.Windows 20.0.0

Bug fixes:

  • Fix discovery showing username and password login for OAuth client credentials providers when it shouldn't.
  • Error handling.

Version 17.33.71-BETA, released 2019-06-19.

Enhancements:

  • Auto-discovery for multi-platform products.
  • Upgrade to Microsoft.net 4.7.2.
  • Increase maximum size of result set to above 4 billion rows.
  • Add compatibility checks on startup.
  • New logon dialog. Updated credentials storage.
  • Delay returning data in ADO.NET provider for faster performance retrieving the first few rows.
  • Moved all Exact Online Power BI connectors to one. Allow setting connection string settings (like api-client-id) and on connect SQL (like 'use all' or '@@run_this_file.sql').
  • Updated partitioning in Control and Composition to allow selection of the partition when having multiple data containers opened, like two Exact Online accounts.
  • Write user messages to trace.
  • Enable configuration of license through environment variable or fixed location.
  • Add environment variable INVANTIVE_ADONET_LOG_FILE to control name of log file for Invantive Bridge.
  • Adapt ADO.NET provider default language to Windows user interface language.
  • No longer actively create an IIID.
  • DDEX: Added provider information.

Bug fixes:

  • Renaming provider attribute.
  • Fix endless recursion on initialization.
  • Fix state helper not available during trace utility reinitialization on first use.
  • Fix log on to Exact Online using Bridge with credentials.
  • Do not throw any excemption by Invantive Bridge.
  • Support 201805 release of Power BI Desktop.
  • Enable Power BI connector on April 2018 release of Power BI.
  • Auto-create invantive folder for license file on first use.
  • Correct prefix on Exact Online provider.
  • Fix unimplemented get_Version of DataContext in Bridge [ITGEN-2236].
  • Allow using the license placed in the Invantive folder.
  • Avoid NullReferenceException from preview in Power BI.
  • Switch to new metadata structure of Invantive ADO.NET driver for translated table names.
  • Fix async method hanging on opening connection.
  • Circumvent bug in exception handling by Power BI releases up to at least 2017 Nov.
  • Determine data type for Invantive SQL based upon DbType provided for a DbParameter.
  • Correct label of XML audit files to be match contents instead of always XML Auditfile Salaris 7.0.
  • Avoid error on Shared State not registered.

Discussion for the Invantive Bridge for Power BI Users Package

Ground Rules:

  • This discussion is only about Invantive Bridge for Power BI Users and the Invantive Bridge for Power BI Users 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 Bridge for Power BI Users, 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