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 17.15.10-BETA

This is a prerelease version of Invantive Bridge for Power BI Users.

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

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="'17.15.10-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-bridge-power-bi-users -y --source="'INTERNAL REPO URL'" --version="'17.15.10-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-bridge-power-bi-users
  win_chocolatey:
    name: invantive-bridge-power-bi-users
    version: '17.15.10-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-bridge-power-bi-users' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '17.15.10-BETA'
  options  '--prerelease'
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     = "17.15.10-BETA"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

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


package { 'invantive-bridge-power-bi-users':
  ensure          => '17.15.10-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 13 Apr 2018.

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-17.15.10-BETA.msi'
  url64bit = 'https://download.invantive.com/release/msi/Invantive%20Bridge%20for%20Power%20BI%20Users-17.15.10-BETA.msi'
  softwareName = 'Invantive Bridge for Power BI Users'
  checksum = 'ACFC66CA633C7AAC24DA25450E4CE114F1736102267E908083FC6146279A5A03'
  checksumType = 'sha256'
  checksum64 = 'ACFC66CA633C7AAC24DA25450E4CE114F1736102267E908083FC6146279A5A03'
  checksumType64 = 'sha256'
  silentArgs = "/qn /norestart /l*v `"$env:Temp\invantive-bridge-power-bi-users-17.15.10-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 132 Monday, May 16, 2022 Approved
Invantive Bridge for Power BI Users 22.1.47-BETA 121 Sunday, May 15, 2022 Approved
Invantive Bridge for Power BI Users 22.1.46-BETA 91 Sunday, May 15, 2022 Approved
Invantive Bridge for Power BI Users 22.1.40-BETA 82 Thursday, May 12, 2022 Approved
Invantive Bridge for Power BI Users 22.1.38-BETA 78 Monday, May 9, 2022 Approved
Invantive Bridge for Power BI Users 22.1.37-BETA 92 Sunday, May 8, 2022 Approved
Invantive Bridge for Power BI Users 22.1.36-BETA 85 Saturday, May 7, 2022 Approved
Invantive Bridge for Power BI Users 22.1.35-BETA 95 Wednesday, May 4, 2022 Approved
Invantive Bridge for Power BI Users 22.1.31-BETA 103 Monday, April 4, 2022 Approved
Invantive Bridge for Power BI Users 22.1.29-BETA 91 Sunday, April 3, 2022 Approved
Invantive Bridge for Power BI Users 22.1.27-BETA 99 Saturday, April 2, 2022 Approved
Invantive Bridge for Power BI Users 22.1.21-BETA 88 Sunday, March 13, 2022 Approved
Invantive Bridge for Power BI Users 22.1.6-BETA 83 Wednesday, February 2, 2022 Approved
Invantive Bridge for Power BI Users 22.0.186 122 Friday, May 13, 2022 Approved
Invantive Bridge for Power BI Users 22.0.183 91 Tuesday, May 10, 2022 Approved
Invantive Bridge for Power BI Users 22.0.182 89 Tuesday, May 10, 2022 Approved
Invantive Bridge for Power BI Users 22.0.177 89 Monday, May 9, 2022 Approved
Invantive Bridge for Power BI Users 22.0.176 84 Monday, May 9, 2022 Approved
Invantive Bridge for Power BI Users 22.0.170 81 Monday, May 9, 2022 Approved
Invantive Bridge for Power BI Users 22.0.169 80 Sunday, May 8, 2022 Approved
Invantive Bridge for Power BI Users 22.0.168 87 Sunday, May 8, 2022 Approved
Invantive Bridge for Power BI Users 22.0.167 80 Sunday, May 8, 2022 Approved
Invantive Bridge for Power BI Users 22.0.166 94 Saturday, May 7, 2022 Approved
Invantive Bridge for Power BI Users 22.0.165 86 Friday, May 6, 2022 Approved
Invantive Bridge for Power BI Users 22.0.164 73 Friday, May 6, 2022 Approved
Invantive Bridge for Power BI Users 22.0.163 91 Thursday, May 5, 2022 Approved
Invantive Bridge for Power BI Users 22.0.162 72 Thursday, May 5, 2022 Approved
Invantive Bridge for Power BI Users 22.0.161 82 Wednesday, May 4, 2022 Approved
Invantive Bridge for Power BI Users 22.0.160 86 Wednesday, May 4, 2022 Approved
Invantive Bridge for Power BI Users 22.0.159 83 Wednesday, May 4, 2022 Approved
Invantive Bridge for Power BI Users 22.0.158 88 Tuesday, May 3, 2022 Approved
Invantive Bridge for Power BI Users 22.0.157 83 Tuesday, May 3, 2022 Approved
Invantive Bridge for Power BI Users 22.0.156 89 Monday, May 2, 2022 Approved
Invantive Bridge for Power BI Users 22.0.155 184 Sunday, May 1, 2022 Approved
Invantive Bridge for Power BI Users 22.0.153 94 Friday, April 29, 2022 Approved
Invantive Bridge for Power BI Users 22.0.152 78 Friday, April 29, 2022 Approved
Invantive Bridge for Power BI Users 22.0.151 89 Thursday, April 28, 2022 Approved
Invantive Bridge for Power BI Users 22.0.150 85 Tuesday, April 26, 2022 Approved
Invantive Bridge for Power BI Users 22.0.149 88 Tuesday, April 26, 2022 Approved
Invantive Bridge for Power BI Users 22.0.142 77 Saturday, April 23, 2022 Approved
Invantive Bridge for Power BI Users 22.0.141 71 Friday, April 22, 2022 Approved
Invantive Bridge for Power BI Users 22.0.140 88 Thursday, April 21, 2022 Approved
Invantive Bridge for Power BI Users 22.0.138 97 Thursday, April 21, 2022 Approved
Invantive Bridge for Power BI Users 22.0.137 70 Wednesday, April 20, 2022 Approved
Invantive Bridge for Power BI Users 22.0.136 100 Wednesday, April 20, 2022 Approved
Invantive Bridge for Power BI Users 22.0.135 95 Tuesday, April 19, 2022 Approved
Invantive Bridge for Power BI Users 22.0.134 97 Tuesday, April 19, 2022 Approved
Invantive Bridge for Power BI Users 22.0.130 88 Monday, April 18, 2022 Approved
Invantive Bridge for Power BI Users 22.0.128 90 Saturday, April 16, 2022 Approved
Invantive Bridge for Power BI Users 22.0.127 86 Friday, April 15, 2022 Approved
Invantive Bridge for Power BI Users 22.0.126 84 Friday, April 15, 2022 Approved
Invantive Bridge for Power BI Users 22.0.125 91 Thursday, April 14, 2022 Approved
Invantive Bridge for Power BI Users 22.0.124 89 Thursday, April 14, 2022 Approved
Invantive Bridge for Power BI Users 22.0.123 87 Wednesday, April 13, 2022 Approved
Invantive Bridge for Power BI Users 22.0.122 80 Wednesday, April 13, 2022 Approved
Invantive Bridge for Power BI Users 22.0.121 88 Wednesday, April 13, 2022 Approved
Invantive Bridge for Power BI Users 22.0.120 83 Tuesday, April 12, 2022 Approved
Invantive Bridge for Power BI Users 22.0.118 95 Tuesday, April 12, 2022 Approved
Invantive Bridge for Power BI Users 22.0.117 96 Monday, April 11, 2022 Approved
Invantive Bridge for Power BI Users 22.0.116 93 Monday, April 11, 2022 Approved
Invantive Bridge for Power BI Users 22.0.115 92 Sunday, April 10, 2022 Approved
Invantive Bridge for Power BI Users 22.0.114 85 Saturday, April 9, 2022 Approved
Invantive Bridge for Power BI Users 22.0.111 84 Saturday, April 9, 2022 Approved
Invantive Bridge for Power BI Users 22.0.104 108 Wednesday, April 6, 2022 Approved
Invantive Bridge for Power BI Users 22.0.103 87 Tuesday, April 5, 2022 Approved
Invantive Bridge for Power BI Users 22.0.102 95 Monday, April 4, 2022 Approved
Invantive Bridge for Power BI Users 22.0.101 85 Sunday, April 3, 2022 Approved
Invantive Bridge for Power BI Users 22.0.99 82 Sunday, April 3, 2022 Approved
Invantive Bridge for Power BI Users 22.0.94 99 Thursday, March 31, 2022 Approved
Invantive Bridge for Power BI Users 22.0.93 86 Wednesday, March 30, 2022 Approved
Invantive Bridge for Power BI Users 22.0.92 95 Wednesday, March 30, 2022 Approved
Invantive Bridge for Power BI Users 22.0.91 86 Monday, March 28, 2022 Approved
Invantive Bridge for Power BI Users 22.0.90 87 Thursday, March 24, 2022 Approved
Invantive Bridge for Power BI Users 22.0.89 88 Thursday, March 24, 2022 Approved
Invantive Bridge for Power BI Users 22.0.88 96 Wednesday, March 23, 2022 Approved
Invantive Bridge for Power BI Users 22.0.87 73 Wednesday, March 23, 2022 Approved
Invantive Bridge for Power BI Users 22.0.86 83 Tuesday, March 22, 2022 Approved
Invantive Bridge for Power BI Users 22.0.85 91 Friday, March 18, 2022 Approved
Invantive Bridge for Power BI Users 22.0.84 90 Thursday, March 17, 2022 Approved
Invantive Bridge for Power BI Users 22.0.83 94 Thursday, March 17, 2022 Approved
Invantive Bridge for Power BI Users 22.0.82 69 Wednesday, March 16, 2022 Approved
Invantive Bridge for Power BI Users 22.0.81 78 Tuesday, March 15, 2022 Approved
Invantive Bridge for Power BI Users 22.0.80 92 Monday, March 14, 2022 Approved
Invantive Bridge for Power BI Users 22.0.76 94 Sunday, March 13, 2022 Approved
Invantive Bridge for Power BI Users 22.0.75 95 Saturday, March 12, 2022 Approved
Invantive Bridge for Power BI Users 22.0.74 79 Saturday, March 12, 2022 Approved
Invantive Bridge for Power BI Users 22.0.72 87 Friday, March 11, 2022 Approved
Invantive Bridge for Power BI Users 22.0.16 122 Wednesday, February 2, 2022 Approved
Invantive Bridge for Power BI Users 22.0.13 109 Friday, January 28, 2022 Approved
Invantive Bridge for Power BI Users 20.2.246 101 Thursday, January 20, 2022 Approved
Invantive Bridge for Power BI Users 20.2.196 105 Tuesday, January 4, 2022 Approved
Invantive Bridge for Power BI Users 20.2.172 94 Friday, December 24, 2021 Approved
Invantive Bridge for Power BI Users 20.2.151 119 Wednesday, December 8, 2021 Approved
Invantive Bridge for Power BI Users 20.2.86 140 Wednesday, November 3, 2021 Approved
Invantive Bridge for Power BI Users 20.2.3 122 Friday, September 3, 2021 Approved
Invantive Bridge for Power BI Users 20.2.0-RC 101 Wednesday, September 1, 2021 Approved
Invantive Bridge for Power BI Users 20.1.530-BETA 102 Wednesday, August 4, 2021 Approved
Invantive Bridge for Power BI Users 20.1.467-BETA 110 Friday, July 2, 2021 Approved
Invantive Bridge for Power BI Users 20.1.288-BETA 170 Friday, November 27, 2020 Exempted
Invantive Bridge for Power BI Users 20.1.20-BETA 205 Saturday, May 2, 2020 Approved
Invantive Bridge for Power BI Users 20.0.131 170 Tuesday, December 15, 2020 Approved
Invantive Bridge for Power BI Users 20.0.128 160 Friday, December 4, 2020 Approved
Invantive Bridge for Power BI Users 20.0.123 148 Wednesday, November 25, 2020 Approved
Invantive Bridge for Power BI Users 20.0.116 185 Thursday, November 12, 2020 Approved
Invantive Bridge for Power BI Users 20.0.107 152 Tuesday, October 27, 2020 Approved
Invantive Bridge for Power BI Users 20.0.106 163 Friday, October 23, 2020 Approved
Invantive Bridge for Power BI Users 20.0.93 156 Saturday, September 19, 2020 Approved
Invantive Bridge for Power BI Users 20.0.90 129 Monday, September 14, 2020 Approved
Invantive Bridge for Power BI Users 20.0.84 148 Tuesday, September 1, 2020 Approved
Invantive Bridge for Power BI Users 20.0.82 151 Monday, August 31, 2020 Approved
Invantive Bridge for Power BI Users 20.0.79 156 Thursday, August 27, 2020 Approved
Invantive Bridge for Power BI Users 20.0.64 157 Thursday, August 6, 2020 Approved
Invantive Bridge for Power BI Users 20.0.51 159 Wednesday, August 5, 2020 Approved
Invantive Bridge for Power BI Users 20.0.48 153 Wednesday, July 8, 2020 Approved
Invantive Bridge for Power BI Users 20.0.40 171 Wednesday, June 17, 2020 Approved
Invantive Bridge for Power BI Users 20.0.37 149 Tuesday, June 16, 2020 Approved
Invantive Bridge for Power BI Users 20.0.33 167 Tuesday, May 26, 2020 Approved
Invantive Bridge for Power BI Users 20.0.23 196 Thursday, May 7, 2020 Approved
Invantive Bridge for Power BI Users 20.0.0 210 Saturday, March 28, 2020 Approved
Invantive Bridge for Power BI Users 17.33.108-BETA 230 Friday, September 20, 2019 Approved
Invantive Bridge for Power BI Users 17.32.258 151 Monday, August 31, 2020 Approved
Invantive Bridge for Power BI Users 17.32.256 147 Thursday, August 27, 2020 Approved
Invantive Bridge for Power BI Users 17.32.249 190 Thursday, August 6, 2020 Approved
Invantive Bridge for Power BI Users 17.32.228 137 Wednesday, July 8, 2020 Approved
Invantive Bridge for Power BI Users 17.32.223 151 Wednesday, June 17, 2020 Approved
Invantive Bridge for Power BI Users 17.32.220 147 Tuesday, June 16, 2020 Approved
Invantive Bridge for Power BI Users 17.32.217 168 Tuesday, May 26, 2020 Approved
Invantive Bridge for Power BI Users 17.32.213 157 Friday, May 8, 2020 Approved
Invantive Bridge for Power BI Users 17.32.211 190 Thursday, May 7, 2020 Approved
Invantive Bridge for Power BI Users 17.32.205 183 Saturday, April 4, 2020 Approved
Invantive Bridge for Power BI Users 17.32.188 180 Tuesday, March 17, 2020 Approved
Invantive Bridge for Power BI Users 17.32.171 208 Monday, February 10, 2020 Approved
Invantive Bridge for Power BI Users 17.32.170 164 Saturday, February 8, 2020 Approved
Invantive Bridge for Power BI Users 17.32.160 187 Tuesday, January 21, 2020 Approved
Invantive Bridge for Power BI Users 17.32.155 184 Monday, January 13, 2020 Approved
Invantive Bridge for Power BI Users 17.32.153 191 Thursday, January 9, 2020 Approved
Invantive Bridge for Power BI Users 17.32.139 206 Wednesday, December 18, 2019 Approved
Invantive Bridge for Power BI Users 17.32.123 203 Wednesday, November 20, 2019 Approved
Invantive Bridge for Power BI Users 17.32.100 240 Thursday, October 31, 2019 Approved
Invantive Bridge for Power BI Users 17.32.76 179 Friday, October 4, 2019 Approved
Invantive Bridge for Power BI Users 17.32.68 214 Wednesday, September 11, 2019 Approved
Invantive Bridge for Power BI Users 17.32.55 242 Wednesday, August 21, 2019 Approved
Invantive Bridge for Power BI Users 17.31.3-BETA 226 Sunday, February 17, 2019 Approved
Invantive Bridge for Power BI Users 17.31.2-BETA 212 Tuesday, February 12, 2019 Approved
Invantive Bridge for Power BI Users 17.31.1-BETA 222 Monday, January 28, 2019 Approved
Invantive Bridge for Power BI Users 17.31.0-BETA 265 Monday, January 21, 2019 Approved
Invantive Bridge for Power BI Users 17.30.0 252 Thursday, January 10, 2019 Approved
Invantive Bridge for Power BI Users 17.29.9-BETA 252 Monday, January 7, 2019 Approved
Invantive Bridge for Power BI Users 17.29.8-BETA 271 Friday, December 28, 2018 Approved
Invantive Bridge for Power BI Users 17.29.7-BETA 234 Friday, December 28, 2018 Approved
Invantive Bridge for Power BI Users 17.29.6-BETA 216 Friday, December 28, 2018 Approved
Invantive Bridge for Power BI Users 17.29.5-BETA 245 Friday, December 28, 2018 Approved
Invantive Bridge for Power BI Users 17.29.4-BETA 235 Friday, December 28, 2018 Approved
Invantive Bridge for Power BI Users 17.29.3-BETA 240 Friday, December 21, 2018 Approved
Invantive Bridge for Power BI Users 17.29.2-BETA 249 Tuesday, December 18, 2018 Approved
Invantive Bridge for Power BI Users 17.29.1-BETA 222 Saturday, November 10, 2018 Approved
Invantive Bridge for Power BI Users 17.29.0-BETA 247 Wednesday, October 31, 2018 Approved
Invantive Bridge for Power BI Users 17.28.0 260 Thursday, October 25, 2018 Approved
Invantive Bridge for Power BI Users 17.27.2-BETA 229 Monday, October 22, 2018 Approved
Invantive Bridge for Power BI Users 17.27.1-BETA 245 Saturday, October 13, 2018 Approved
Invantive Bridge for Power BI Users 17.27.0-BETA 236 Friday, September 14, 2018 Approved
Invantive Bridge for Power BI Users 17.25.1-BETA 259 Thursday, August 16, 2018 Approved
Invantive Bridge for Power BI Users 17.25.0-BETA 246 Wednesday, August 15, 2018 Approved
Invantive Bridge for Power BI Users 17.24.9 285 Wednesday, July 11, 2018 Approved
Invantive Bridge for Power BI Users 17.24.8 275 Tuesday, June 26, 2018 Approved
Invantive Bridge for Power BI Users 17.24.7 316 Tuesday, June 26, 2018 Approved
Invantive Bridge for Power BI Users 17.24.6 272 Tuesday, June 26, 2018 Approved
Invantive Bridge for Power BI Users 17.24.5 280 Tuesday, June 26, 2018 Approved
Invantive Bridge for Power BI Users 17.24.4 266 Tuesday, June 26, 2018 Approved
Invantive Bridge for Power BI Users 17.24.3 271 Tuesday, June 26, 2018 Approved
Invantive Bridge for Power BI Users 17.24.2 290 Friday, June 15, 2018 Approved
Invantive Bridge for Power BI Users 17.24.1 287 Thursday, June 14, 2018 Approved
Invantive Bridge for Power BI Users 17.24.0 283 Thursday, June 14, 2018 Approved
Invantive Bridge for Power BI Users 17.23.3-BETA 306 Friday, June 1, 2018 Approved
Invantive Bridge for Power BI Users 17.23.1-BETA 312 Friday, June 1, 2018 Approved
Invantive Bridge for Power BI Users 17.23.0-BETA 341 Friday, April 20, 2018 Approved
Invantive Bridge for Power BI Users 17.15.11-BETA 317 Friday, April 13, 2018 Approved
Invantive Bridge for Power BI Users 17.15.10-BETA 303 Friday, April 13, 2018 Approved
Invantive Bridge for Power BI Users 17.15.9-BETA 340 Friday, April 6, 2018 Approved
Invantive Bridge for Power BI Users 17.15.8-BETA 335 Friday, April 6, 2018 Approved
Invantive Bridge for Power BI Users 17.15.7-BETA 322 Friday, April 6, 2018 Approved
Invantive Bridge for Power BI Users 17.15.5-BETA 312 Thursday, April 5, 2018 Approved
Invantive Bridge for Power BI Users 17.15.4-BETA 353 Friday, March 9, 2018 Approved
Invantive Bridge for Power BI Users 17.15.0 378 Tuesday, March 6, 2018 Approved
Invantive Bridge for Power BI Users 17.14.22-BETA 309 Tuesday, March 6, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.21-BETA 359 Tuesday, March 6, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.18-BETA 361 Tuesday, March 6, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.17-BETA 338 Monday, March 5, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.15-RC 314 Sunday, March 4, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.14-BETA 348 Sunday, March 4, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.11-BETA 413 Friday, February 16, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.10-BETA 356 Thursday, February 15, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.8-BETA 349 Thursday, February 15, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.7-BETA 338 Wednesday, February 14, 2018 Exempted
Invantive Bridge for Power BI Users 17.14.6-BETA 343 Thursday, December 28, 2017 Exempted
Invantive Bridge for Power BI Users 17.14.5-BETA 357 Friday, December 22, 2017 Exempted
Invantive Bridge for Power BI Users 17.14.3-RC 339 Friday, December 22, 2017 Exempted
Invantive Bridge for Power BI Users 17.14.2-RC 296 Friday, December 22, 2017 Exempted
Invantive Bridge for Power BI Users 17.14.1-RC 388 Friday, December 22, 2017 Exempted
Invantive Bridge for Power BI Users 17.14.0-RC 384 Friday, December 22, 2017 Exempted
Invantive Bridge for Power BI Users 17.13.4-RC 348 Friday, December 22, 2017 Exempted
Invantive Bridge for Power BI Users 17.13.0-RC 357 Monday, December 11, 2017 Exempted
Invantive Bridge for Power BI Users 17.12.4-RC 368 Monday, December 11, 2017 Exempted
Invantive Bridge for Power BI Users 17.12.3-RC 382 Monday, December 11, 2017 Exempted
Invantive Bridge for Power BI Users 17.12.2-RC 386 Monday, December 11, 2017 Exempted
Invantive Bridge for Power BI Users 17.12.1-RC 337 Monday, December 11, 2017 Exempted
Invantive Bridge for Power BI Users 17.12.0-RC 371 Friday, December 8, 2017 Exempted
Invantive Bridge for Power BI Users 17.11.11-RC 391 Thursday, December 7, 2017 Exempted
Invantive Bridge for Power BI Users 17.11.9-BETA 396 Saturday, November 25, 2017 Exempted
Invantive Bridge for Power BI Users 17.11.6-BETA 338 Saturday, November 25, 2017 Exempted

Included components:

  • Invantive.SQL.Windows 17.23.5-BETA

Version 17.15.7-BETA, released 2018-04-06.

Bug fixes:

  • Enable Power BI connector on April 2018 release of Power BI.

Version 17.15.5-BETA, released 2018-03-16.

Bug fixes:

  • Auto-create invantive folder for license file on first use.

Version 17.15.2, released 2018-03-07.

Enhancements:

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

Bug fixes:

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

Version 17.11.12, released 2017-12-08.

Enhancements:

  • No longer actively create an IIID.
  • DDEX: Added provider information.

Bug fixes:

  • 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