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:

21,864

Downloads of v 1026.0:

447

Last Update:

21 Jul 2015

Package Maintainer(s):

Software Author(s):

  • QuizoApps

Tags:

productivity windows explorer extension

QTTabBar

This is not the latest version of QTTabBar available.

  • 1
  • 2
  • 3

1026.0 | Updated: 21 Jul 2015

Downloads:

21,864

Downloads of v 1026.0:

447

Maintainer(s):

Software Author(s):

  • QuizoApps

QTTabBar 1026.0

This is not the latest version of QTTabBar available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Unknown


Verification Testing Unknown


Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install QTTabBar, run the following command from the command line or from PowerShell:

>

To upgrade QTTabBar, run the following command from the command line or from PowerShell:

>

To uninstall QTTabBar, 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 qttabbar -y --source="'INTERNAL REPO URL'" --version="'1026.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 qttabbar -y --source="'INTERNAL REPO URL'" --version="'1026.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 qttabbar
  win_chocolatey:
    name: qttabbar
    version: '1026.0'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'qttabbar' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1026.0'
end

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


cChocoPackageInstaller qttabbar
{
    Name     = "qttabbar"
    Version  = "1026.0"
    Source   = "INTERNAL REPO URL"
}

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


package { 'qttabbar':
  ensure   => '1026.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.

Package Approved

This package was approved by moderator ferventcoder on 07 Oct 2015.

Description

QTTabBar is extension for Windows Explorer that brings tabbed browsing to Microsoft's file browser, along with a host of other great features.

Documentation

Community


tools\chocolateyInstall.ahk
; default environment
DetectHiddenWindows, off
SetControlDelay, 20

; modified environment
#NoEnv
#NoTrayIcon
DetectHiddenText, off
SetTitleMatchMode, 2

; variables
winTitleIE = - Internet Explorer ahk_class IEFrame ahk_exe iexplore.exe
winTitleAddons = Manage Add-ons ahk_class #32770 ahk_exe iexplore.exe
winTitleEnable = Enable add-on ahk_class #32770 ahk_exe iexplore.exe

Process, Exist, iexplore.exe
if !ErrorLevel = 0 {
  procExists = 1
  WinActivate,%winTitleIE%
} else {
  procExists = 0
  Run, iexplore, , , pid
;  WinWait, ahk_pid %pid%, Address Bar, 60  ;too quick
;  WinActivate, ahk_pid %pid%, , 10
  WinWait, %winTitleIE%, , 60
  WinActivate, %winTitleIE%, , 60
  Sleep 1000
}

Loop {
  Send {ALT Down}x{ALT Up}m
  IfWinExist, %winTitleAddons% 
  {
    WinActivate
    break
  }
  Sleep 150
}

Send {TAB 2}QTTabBar{ALT Down}e{ALT Up}
Sleep 1000

IfWinActive, %winTitleEnable%
{
  Send {ENTER}
  Send {ALT Down}l{ALT Up}
  CloseIE()
  sleep 10000
  Return
}
IfWinActive, %winTitleAddons% 
{
  Send {ALT Down}l{ALT Up}
  CloseIE()
}

CloseIE()
{
  if procExists = 1 
  {
    WinActivate,%winTitleIE%,  
    Send, ^w
  }
  else
  {
    WinClose, ahk_exe iexplore.exe
  }
}

; File Explorer
Run, explorer
WinWait, ahk_exe explorer.exe, , 60
WinActivate, ahk_exe explorer.exe
Sleep 500
SetKeyDelay 50
Send {ALT}
Send {V}
Send {Y}
Send {DOWN 2}
Send {SPACE}
Send {ALT down}{F4}
tools\chocolateyInstall.ps1
$packageName = 'qttabbar'
$url = 'http://qttabbar.wdfiles.com/local--files/qttabbar/QTTabBar_1026.zip'
$checksum = '46d0a283d36a94c79e91694029363a8a8ac0c167'
$checksumType = 'sha1'
$installerType = 'exe'
$silentArgs = "/QI"
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$installFile = Join-Path $toolsDir "$($packageName).exe"
$ahkFile = Join-Path $toolsDir 'chocolateyInstall.ahk'

$regKey = 'HKCU:\SOFTWARE\Quizo\QTTabBar'
if (Test-Path $regKey) {
  $installed = 1
  Write-Debug "Existing install detected."
}

Install-ChocolateyZipPackage -PackageName "$packageName" `
                             -Url "$url" `
                             -UnzipLocation "$toolsDir" `
                             -Url64bit "" `
                             -Checksum "$checksum" `
                             -ChecksumType "$checksumType"

Install-ChocolateyInstallPackage -PackageName "$packageName" `
                                 -FileType "$installerType" `
                                 -SilentArgs "$silentArgs" `
                                 -File "$installFile"

# disable warning popup in IE
New-Item -Path HKCU:\Software\Quizo -ErrorAction SilentlyContinue
New-Item -Path HKCU:\Software\Quizo\QTTabBar -ErrorAction SilentlyContinue
$regKey = 'HKCU:\SOFTWARE\Quizo\QTTabBar'
$regProp = 'IEWarned'
$regPropVal = '1'  #default=0; 1=suppress
Set-ItemProperty $regKey -Name $regProp -Value $regPropVal -Type DWord -ErrorAction SilentlyContinue

if (! $installed -eq 1) {
  Write-Host "Attempting to automatically add QTTabBar to File Explorer, this may take a minute..."
  # temporarily quiet IE via registry
  $disableIePopups = @("DisableFirstRunCustomize","RunOnceHasShown","RunOnceComplete")
  $regIeLm = 'HKLM:\Software\Policies\Microsoft\Internet Explorer\Main'
  $regIeCu = 'HKCU:\Software\Policies\Microsoft\Internet Explorer\Main'
  foreach ($i in $disableIePopups) {
    $regIeLmBak = ,(Get-ItemProperty $regIeLm).$i
    Set-ItemProperty $regIeLm -Name $i -Value 1 -Type DWord
    $regIeCuBak = ,(Get-ItemProperty $regIeCu).$i
    Set-ItemProperty $regIeCu -Name $i -Value 1 -Type DWord
  }  
  Start-Process 'AutoHotKey' $ahkFile -Wait
  # restore registry for IE
  foreach ($i in $disableIePopups) {
    Set-ItemProperty $regIeLm -Name $i -Value $regIeLmBak[$x++] -Type DWord
    Set-ItemProperty $regIeLm -Name $i -Value $regIeLmBak[$y++] -Type DWord
  }
}

Write-Host
@"
After launching a new File Explorer process, if QTTabBar toolbar is not present, please perform the following steps to enable:
`t
1. Enable plugin within INTERNET Explorer:
`t   WinKey+R > iexplore > EnterKey > Alt+X > M > (Verify QTTabBar is set to ENABLE)
`t
2. Add toolbar within FILE Explorer:
`t   WinKey+R > explorer > EnterKey > Alt > V > Y > (Choose QTTabBar to enable the toolbar)
`t
3. Configure QTTabBar by context `"right`" clicking  on the QTTabBar toolbar.
`t
Note:   >   represents the NEXT STEP, not an input
        +   represents HOLDING the first key down while pressing the second key, then releasing both
       ( )  represents INSTRUCTIONS, not an input
"@
tools\chocolateyUninstall.ps1
$packageName = 'qttabbar'
$installerType = 'exe'
$silentArgs = "/QU"
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$uninstallFile = Join-Path $toolsDir "$($packageName).exe"

$regKey = 'HKLM:\SOFTWARE\Quizo\QTTabBar'
if (Test-Path $regKey) {
  Write-Debug "Existing install detected."
}

if (Test-Path $uninstallFile) {
Uninstall-ChocolateyPackage -PackageName "$packageName" `
                            -FileType "$installerType" `
                            -SilentArgs "$silentArgs" `
                            -File "$uninstallFile"
}

# vista bug, if qttabbar remains after uninstall, remove key:
#[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Toolbar\ShellBrowser]
#"ITBar7Layout"

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
QTTabBar 1029.0 2049 Tuesday, August 25, 2015 Approved
QTTabBar 1028.0 434 Tuesday, August 11, 2015 Approved
QTTabBar 1026.0 447 Tuesday, July 21, 2015 Approved
QTTabBar 1025.0 429 Tuesday, June 30, 2015 Approved
QTTabBar 513.0 1324 Friday, June 6, 2014 Approved
QTTabBar 258.0 670 Sunday, October 20, 2013 Unknown
QTTabBar 1.5.0 815 Monday, August 27, 2012 Unknown

Program

Package

  • Automatically built and uploaded by dtgm
Discussion for the QTTabBar Package

Ground Rules:

  • This discussion is only about QTTabBar and the QTTabBar 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 QTTabBar, 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