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 Connectors for PowerBI 17.14.5-BETA

This is a prerelease version of Invantive Bridge Connectors for PowerBI.

  • 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 Connectors for PowerBI, run the following command from the command line or from PowerShell:

>

To upgrade Invantive Bridge Connectors for PowerBI, run the following command from the command line or from PowerShell:

>

To uninstall Invantive Bridge Connectors for PowerBI, 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-connectors-power-bi -y --source="'INTERNAL REPO URL'" --version="'17.14.5-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-connectors-power-bi -y --source="'INTERNAL REPO URL'" --version="'17.14.5-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-connectors-power-bi
  win_chocolatey:
    name: invantive-bridge-connectors-power-bi
    version: '17.14.5-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-connectors-power-bi' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '17.14.5-BETA'
  options  '--prerelease'
end

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


cChocoPackageInstaller invantive-bridge-connectors-power-bi
{
    Name        = "invantive-bridge-connectors-power-bi"
    Version     = "17.14.5-BETA"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

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


package { 'invantive-bridge-connectors-power-bi':
  ensure          => '17.14.5-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.

WARNING

This package is exempt from moderation. While it is likely safe for you, there is more risk involved.

Description

Invantive Bridge Connectors for PowerBI


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

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

$packageArgs = @{
  packageName = $packageName
  fileType = 'MSI'
  url = 'https://download.invantive.com/release/msi/Invantive%20Bridge%20Connectors%20for%20PowerBI-17.14.5-BETA.msi'
  url64bit = 'https://download.invantive.com/release/msi/Invantive%20Bridge%20Connectors%20for%20PowerBI-17.14.5-BETA.msi'
  softwareName = 'Invantive Bridge Connectors for PowerBI'
  checksum = '4318F0EC9CE80B9F5AA59C6664CCA6626AF8C50B674FF9A7319AF88AC4CF62C2'
  checksumType = 'sha256'
  checksum64 = '4318F0EC9CE80B9F5AA59C6664CCA6626AF8C50B674FF9A7319AF88AC4CF62C2'
  checksumType64 = 'sha256'
  silentArgs = "/qn /norestart /l*v `"$env:Temp\invantive-bridge-connectors-power-bi-17.14.5-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) Bridge Connectors for Power BI 20.2.86 66 Wednesday, November 3, 2021 Approved
Invantive(R) Bridge Connectors for Power BI 20.2.3 68 Friday, September 3, 2021 Approved
Invantive(R) Bridge Connectors for Power BI 20.2.0-RC 51 Wednesday, September 1, 2021 Approved
Invantive(R) Bridge Connectors for Power BI 20.1.530-BETA 71 Wednesday, August 4, 2021 Approved
Invantive(R) Bridge Connectors for Power BI 20.1.467-BETA 53 Thursday, July 1, 2021 Approved
Invantive(R) Bridge Connectors for Power BI 20.1.288-BETA 114 Friday, November 27, 2020 Exempted
Invantive(R) Bridge Connectors for Power BI 20.1.20-BETA 152 Saturday, May 2, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.154 72 Thursday, June 10, 2021 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.148 73 Friday, April 9, 2021 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.145 85 Wednesday, March 3, 2021 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.131 118 Tuesday, December 15, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.128 83 Friday, December 4, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.123 105 Wednesday, November 25, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.116 92 Thursday, November 12, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.107 111 Tuesday, October 27, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.106 112 Friday, October 23, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.93 108 Saturday, September 19, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.84 115 Tuesday, September 1, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.82 91 Monday, August 31, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.79 142 Thursday, August 27, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.64 114 Thursday, August 6, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.51 116 Wednesday, August 5, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.48 114 Wednesday, July 8, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.40 113 Wednesday, June 17, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.37 96 Tuesday, June 16, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.33 132 Tuesday, May 26, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.23 120 Thursday, May 7, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 20.0.0 163 Saturday, March 28, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 17.33.108-BETA 155 Friday, September 20, 2019 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.258 82 Monday, August 31, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.256 99 Thursday, August 27, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.249 113 Thursday, August 6, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.228 126 Wednesday, July 8, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.223 105 Wednesday, June 17, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.220 103 Tuesday, June 16, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.217 99 Tuesday, May 26, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.213 134 Friday, May 8, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.211 125 Thursday, May 7, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.205 132 Saturday, April 4, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.188 140 Tuesday, March 17, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.171 198 Monday, February 10, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.170 117 Saturday, February 8, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.160 129 Tuesday, January 21, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.153 129 Thursday, January 9, 2020 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.139 127 Wednesday, December 18, 2019 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.123 140 Wednesday, November 20, 2019 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.76 141 Friday, October 4, 2019 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.68 158 Wednesday, September 11, 2019 Approved
Invantive(R) Bridge Connectors for Power BI 17.32.33 184 Saturday, June 22, 2019 Approved
Invantive(R) Bridge Connectors for Power BI 17.31.3-BETA 153 Sunday, February 17, 2019 Approved
Invantive(R) Bridge Connectors for Power BI 17.31.2-BETA 180 Tuesday, February 12, 2019 Approved
Invantive(R) Bridge Connectors for Power BI 17.31.1-BETA 207 Monday, January 28, 2019 Approved
Invantive(R) Bridge Connectors for Power BI 17.31.0-BETA 183 Monday, January 21, 2019 Approved
Invantive(R) Bridge Connectors for Power BI 17.30.0 197 Thursday, January 10, 2019 Approved
Invantive(R) Bridge Connectors for Power BI 17.29.9-BETA 160 Monday, January 7, 2019 Approved
Invantive(R) Bridge Connectors for Power BI 17.29.6-BETA 170 Friday, December 28, 2018 Approved
Invantive(R) Bridge Connectors for Power BI 17.29.5-BETA 185 Friday, December 28, 2018 Approved
Invantive Bridge Connectors for Power BI 17.29.3-BETA 207 Friday, December 21, 2018 Approved
Invantive Bridge Connectors for Power BI 17.29.2-BETA 169 Tuesday, December 18, 2018 Approved
Invantive Bridge Connectors for Power BI 17.29.0-BETA 191 Wednesday, October 31, 2018 Approved
Invantive Bridge Connectors for Power BI 17.28.0 179 Thursday, October 25, 2018 Approved
Invantive Bridge Connectors for Power BI 17.27.2-BETA 212 Monday, October 22, 2018 Approved
Invantive Bridge Connectors for Power BI 17.27.1-BETA 206 Tuesday, October 16, 2018 Approved
Invantive Bridge Connectors for Power BI 17.27.0-BETA 194 Friday, September 14, 2018 Approved
Invantive Bridge Connectors for Power BI 17.25.0-BETA 206 Wednesday, August 15, 2018 Approved
Invantive Bridge Connectors for Power BI 17.24.8 238 Tuesday, June 26, 2018 Approved
Invantive Bridge Connectors for Power BI 17.24.4 209 Tuesday, June 26, 2018 Approved
Invantive Bridge Connectors for Power BI 17.24.3 199 Tuesday, June 26, 2018 Approved
Invantive Bridge Connectors for Power BI 17.24.2 217 Friday, June 15, 2018 Approved
Invantive Bridge Connectors for Power BI 17.24.1 230 Thursday, June 14, 2018 Approved
Invantive Bridge Connectors for Power BI 17.24.0 210 Thursday, June 14, 2018 Approved
Invantive Bridge Connectors for Power BI 17.23.3-BETA 225 Friday, June 1, 2018 Approved
Invantive Bridge Connectors for Power BI 17.23.2-BETA 240 Friday, June 1, 2018 Approved
Invantive Bridge Connectors for Power BI 17.23.1-BETA 238 Friday, June 1, 2018 Approved
Invantive Bridge Connectors for Power BI 17.15.7-BETA 291 Friday, April 6, 2018 Approved
Invantive Bridge Connectors for Power BI 17.15.5-BETA 251 Thursday, April 5, 2018 Approved
Invantive Bridge Connectors for Power BI 17.15.2 304 Wednesday, March 7, 2018 Approved
Invantive Bridge Connectors for PowerBI 17.15.0 281 Tuesday, March 6, 2018 Approved
Invantive Bridge Connectors for PowerBI 17.14.22-BETA 285 Tuesday, March 6, 2018 Exempted
Invantive Bridge Connectors for PowerBI 17.14.18-BETA 270 Tuesday, March 6, 2018 Exempted
Invantive Bridge Connectors for PowerBI 17.14.17-BETA 272 Monday, March 5, 2018 Exempted
Invantive Bridge Connectors for PowerBI 17.14.15-RC 287 Sunday, March 4, 2018 Exempted
Invantive Bridge Connectors for PowerBI 17.14.6-BETA 306 Thursday, December 28, 2017 Exempted
Invantive Bridge Connectors for PowerBI 17.14.5-BETA 302 Friday, December 22, 2017 Exempted
Invantive Bridge Connectors for PowerBI 17.13.4-RC 276 Friday, December 22, 2017 Exempted
Invantive Bridge Connectors for PowerBI 17.12.0-RC 303 Friday, December 8, 2017 Exempted
Invantive Bridge Connectors for PowerBI 17.11.9-BETA 313 Saturday, November 25, 2017 Exempted
Invantive Bridge Connectors for PowerBI 17.11.6-BETA 310 Saturday, November 25, 2017 Exempted

Version 17.14.5-BETA, released 2017-12-22:

  • Enable configuration of license through environment variable or fixed location.

Version 17.14.2-RC, released 2017-12-22:

  • Avoid NullReferenceException from preview in Power BI.

Version 17.14.0-RC, released 2017-12-22:

  • Add environment variable INVANTIVE_ADONET_LOG_FILE to control name of log file for Invantive Bridge.

Version 17.13.4-RC, released 2017-12-22:

  • Switch to new metadata structure of Invantive ADO.NET driver for translated table names.
  • Fix async method hanging on opening connection.

Version 17.12.3-RC, released 2017-12-11:

  • Circumvent bug in exception handling by Power BI releases up to at least 2017 Nov.
  • Adapt ADO.NET provider default language to Windows user interface language.
  • Determine data type for Invantive SQL based upon DbType provided for a DbParameter.

Version 17.11.12, released 2017-12-08:

  • 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.
  • No longer actively create an IIID.
  • DDEX: Added provider information.

Discussion for the Invantive Bridge Connectors for PowerBI Package

Ground Rules:

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