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:

74,147

Downloads of v 2025.11.0:

400

Last Update:

16 Jun 2025

Package Maintainer(s):

Software Author(s):

  • 3T

Tags:

Studio 3T

  • 1
  • 2
  • 3

2025.11.0 | Updated: 16 Jun 2025

Downloads:

74,147

Downloads of v 2025.11.0:

400

Software Author(s):

  • 3T

Studio 3T 2025.11.0

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

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Studio 3T, run the following command from the command line or from PowerShell:

>

To upgrade Studio 3T, run the following command from the command line or from PowerShell:

>

To uninstall Studio 3T, 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 studio3t -y --source="'INTERNAL REPO URL'" [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 studio3t -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install studio3t
  win_chocolatey:
    name: studio3t
    version: '2025.11.0'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'studio3t' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2025.11.0'
end

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


cChocoPackageInstaller studio3t
{
    Name     = "studio3t"
    Version  = "2025.11.0"
    Source   = "INTERNAL REPO URL"
}

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


package { 'studio3t':
  ensure   => '2025.11.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 16 Jun 2025.

Description

Used by most MongoDB professionals, Studio 3T makes working with MongoDB easy with features like Visual Query Builder, IntelliShell, SQL Query, Aggregation Editor and much more.

Studio 3T is free for non-commercial use. They offer a free trial for other use cases.


tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'

$packageName = 'studio3t'
$url64 = 'https://download.studio3t.com/studio-3t/windows/2025.11.0/studio-3t-x64.zip'
$checksum64 = 'e262ddf7ba645c9df554ba46c263e1f3dc521e83eb232f28108403de17c7b507'
$checksumType64 = 'sha256'
$toolsDir = "$(Split-Path -Parent $MyInvocation.MyCommand.Definition)"

. $toolsDir\helpers.ps1

Uninstall-OutdatedVersion

Install-ChocolateyZipPackage -PackageName $packageName `
                             -Url64bit $url64 `
                             -Checksum64 $checksum64 `
                             -ChecksumType64 $checksumType64 `
                             -UnzipLocation $toolsDir

$fileType = 'exe'
$silentArgs = '-q -console'
$file = Get-ChildItem $toolsDir -Include *.exe -Recurse | Select-Object -First 1

Install-ChocolateyInstallPackage -PackageName $packageName `
                                 -FileType $fileType `
                                 -SilentArgs $silentArgs `
                                 -File $file

TryRemove-Item $file
tools\chocolateyUninstall.ps1
$ErrorActionPreference = 'Stop'

$packageName = 'studio3t'
$fileType = 'exe'
$silentArgs = '-q'

[array] $key = Get-UninstallRegistryKey -SoftwareName 'Studio 3T'

if ($key.Count -eq 1) {
	$key | ForEach-Object {
		$file = $_.UninstallString

		Uninstall-ChocolateyPackage -PackageName $packageName `
		                            -FileType $fileType `
		                            -SilentArgs $silentArgs `
		                            -File $file
	}
} elseif ($key.Count -eq 0) {
	Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
	Write-Warning "$($key.Count) matches found!"
	Write-Warning 'To prevent accidental data loss, no programs will be uninstalled.'
	Write-Warning 'Please alert package maintainer the following keys were matched:'
	$key | ForEach-Object { Write-Warning "- $($_.DisplayName)" }
}
tools\helpers.ps1
function TryRemove-Item([string] $Path, [int] $Tries = 5) {
	$triesCount = 0
	do {
		try {
			Remove-Item $Path
			$fileRemovedSuccessfully = $true
		} catch {
			$triesCount++
			if ($triesCount -ge $Tries) {
				Write-Warning "Impossible to remove $Path after $Tries attempts. Giving up..."
				break
			}
			Start-Sleep 5
		}
	} until ($fileRemovedSuccessfully)
}

function Uninstall-OutdatedVersion() {
	[array] $key = Get-UninstallRegistryKey -SoftwareName 'Studio 3T'

	if ($key.Count -eq 1) {
		$key | ForEach-Object {
			Write-Host 'Studio 3T needs to be uninstalled before upgrading.'

			if ([System.Version] $_.DisplayVersion -lt [System.Version] '5.7.0') {
				$fileType = 'msi'
				$silentArgs = "$($_.PSChildName) /quiet"
				$file = ''
			} else {
				$fileType = 'exe'
				$silentArgs = '-q -console'
				$file = $_.UninstallString
			}

			Uninstall-ChocolateyPackage -PackageName $packageName `
			                            -FileType $fileType `
			                            -SilentArgs $silentArgs `
			                            -File $file
		}
	}
}

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
Studio 3T 2025.10.1 491 Monday, June 2, 2025 Approved
Studio 3T 2025.9.0 356 Monday, May 19, 2025 Approved
Studio 3T 2025.8.0 381 Monday, May 5, 2025 Approved
Studio 3T 2025.7.0 308 Tuesday, April 22, 2025 Approved
Studio 3T 2025.6.0 400 Monday, April 7, 2025 Approved
Studio 3T 2025.5.1 327 Friday, March 28, 2025 Approved
Studio 3T 2025.5.0 208 Monday, March 24, 2025 Approved
Studio 3T 2025.4.0 553 Monday, March 3, 2025 Approved
Studio 3T 2025.3.0 490 Monday, February 17, 2025 Approved
Studio 3T 2025.2.0 435 Monday, February 3, 2025 Approved
Studio 3T 2025.1.0 554 Wednesday, January 15, 2025 Approved
Studio 3T 2024.5.1 623 Monday, December 16, 2024 Approved
Studio 3T 2024.5.0 389 Wednesday, December 11, 2024 Approved
Studio 3T 2024.4.1 1108 Thursday, October 31, 2024 Approved
Studio 3T 2024.4.0 762 Monday, September 30, 2024 Approved
Studio 3T 2024.3.1 1605 Monday, June 10, 2024 Approved
Studio 3T 2024.3.0 640 Thursday, May 16, 2024 Approved
Studio 3T 2024.2.0 1070 Wednesday, March 13, 2024 Approved
Studio 3T 2024.1.0 408 Thursday, February 29, 2024 Approved
Studio 3T 2023.9.0 1423 Tuesday, November 28, 2023 Approved
Studio 3T 2023.8.0 560 Thursday, October 26, 2023 Approved
Studio 3T 2023.7.0 349 Thursday, October 12, 2023 Approved
Studio 3T 2023.6.2 633 Wednesday, September 20, 2023 Approved
Studio 3T 2023.6.1 317 Friday, September 8, 2023 Approved
Studio 3T 2023.6.0 360 Thursday, August 24, 2023 Approved
Studio 3T 2023.5.0 946 Tuesday, June 13, 2023 Approved
Studio 3T 2023.4.1 506 Wednesday, May 17, 2023 Approved
Studio 3T 2023.4.0 332 Thursday, May 4, 2023 Approved
Studio 3T 2023.3.0 483 Thursday, March 30, 2023 Approved
Studio 3T 2023.2.0 388 Thursday, March 16, 2023 Approved
Studio 3T 2023.1.1 532 Monday, February 13, 2023 Approved
Studio 3T 2022.10.0 666 Wednesday, December 7, 2022 Approved
Studio 3T 2022.9.2 357 Tuesday, November 15, 2022 Approved
Studio 3T 2022.9.1 211 Thursday, November 10, 2022 Approved
Studio 3T 2022.9.0 246 Monday, October 31, 2022 Approved
Studio 3T 2022.8.3 414 Friday, October 7, 2022 Approved
Studio 3T 2022.8.2 173 Tuesday, October 4, 2022 Approved
Studio 3T 2022.8.1 422 Wednesday, September 7, 2022 Approved
Studio 3T 2022.8.0 217 Thursday, September 1, 2022 Approved
Studio 3T 2022.7.2 316 Monday, August 15, 2022 Approved
Studio 3T 2022.7.1 329 Tuesday, July 26, 2022 Exempted
Studio 3T 2022.7.0 218 Thursday, July 21, 2022 Exempted
Studio 3T 2022.6.1 319 Monday, June 27, 2022 Approved
Studio 3T 2022.6.0 206 Tuesday, June 21, 2022 Approved
Studio 3T 2022.5.0 299 Thursday, May 19, 2022 Exempted
Studio 3T 2022.4.1 314 Wednesday, April 27, 2022 Exempted
Studio 3T 2022.4.0 182 Thursday, April 21, 2022 Approved
Studio 3T 2022.3.0 316 Monday, March 28, 2022 Approved
Studio 3T 2022.2.0 351 Thursday, February 24, 2022 Approved
Studio 3T 2022.1.1 338 Thursday, January 27, 2022 Approved
Studio 3T 2021.10.1 535 Tuesday, December 14, 2021 Approved
Studio 3T 2021.10.0 282 Thursday, December 9, 2021 Approved
Studio 3T 2021.9.0 445 Wednesday, November 10, 2021 Approved
Studio 3T 2021.8.1 380 Wednesday, October 20, 2021 Exempted
Studio 3T 2021.8.0 262 Wednesday, October 13, 2021 Exempted
Studio 3T 2021.7.1 327 Tuesday, September 21, 2021 Approved
Studio 3T 2021.6.1 329 Monday, August 30, 2021 Exempted
Studio 3T 2021.6.0 228 Tuesday, August 24, 2021 Approved
Studio 3T 2021.5.1 384 Wednesday, July 28, 2021 Approved
Studio 3T 2021.5.0 367 Tuesday, July 20, 2021 Approved
Studio 3T 2021.4.1 409 Thursday, July 1, 2021 Approved
Studio 3T 2021.4.0 306 Thursday, June 24, 2021 Approved
Studio 3T 2021.3.1 383 Wednesday, June 2, 2021 Approved
Studio 3T 2021.3.0 304 Tuesday, May 25, 2021 Approved
Studio 3T 2021.2.0 990 Tuesday, March 16, 2021 Approved
Studio 3T 2021.1.1 499 Thursday, February 11, 2021 Approved
Studio 3T 2021.1.0 311 Wednesday, February 3, 2021 Approved
Studio 3T 2020.10.1 731 Wednesday, December 16, 2020 Approved
Studio 3T 2020.10.0 288 Thursday, December 10, 2020 Approved
Studio 3T 2020.9.3 680 Wednesday, October 28, 2020 Approved
Studio 3T 2020.9.2 300 Wednesday, October 21, 2020 Approved
Studio 3T 2020.9.1 200 Tuesday, October 20, 2020 Approved
Studio 3T 2020.9.0 293 Thursday, October 15, 2020 Approved
Studio 3T 2020.8.0 2423 Thursday, September 10, 2020 Approved
Studio 3T 2020.7.1 5159 Sunday, August 16, 2020 Approved
Studio 3T 2020.7.0 426 Tuesday, July 28, 2020 Approved
Studio 3T 2020.6.1 447 Saturday, July 11, 2020 Approved
Studio 3T 2020.6.0 285 Saturday, July 4, 2020 Approved
Studio 3T 2020.5.0 693 Wednesday, May 13, 2020 Approved
Studio 3T 2020.4.0 432 Tuesday, April 14, 2020 Approved
Studio 3T 2020.3.1 605 Wednesday, March 11, 2020 Approved
Studio 3T 2020.3.0 278 Friday, March 6, 2020 Approved
Studio 3T 2020.2.1 394 Wednesday, February 19, 2020 Approved
Studio 3T 2020.2.0 244 Saturday, February 15, 2020 Approved
Studio 3T 2020.1.2 383 Friday, January 17, 2020 Approved
Studio 3T 2020.1.1 330 Friday, January 10, 2020 Approved
Studio 3T 2020.1.0 260 Tuesday, January 7, 2020 Approved
Studio 3T 2019.7.1 534 Tuesday, November 19, 2019 Approved
Studio 3T 2019.7.0 241 Wednesday, November 13, 2019 Approved
Studio 3T 2019.6.1 466 Tuesday, October 22, 2019 Approved
Studio 3T 2019.6.0 343 Tuesday, October 15, 2019 Approved
Studio 3T 2019.5.1 417 Thursday, September 19, 2019 Approved
Studio 3T 2019.5.0 463 Wednesday, August 28, 2019 Approved
Studio 3T 2019.4.1 421 Friday, August 2, 2019 Approved
Studio 3T 2019.4.0 235 Wednesday, July 31, 2019 Approved
Studio 3T 2019.3.0 844 Monday, June 3, 2019 Approved
Studio 3T 2019.2.1 1080 Monday, April 1, 2019 Approved
Studio 3T 2019.2.0 413 Friday, March 22, 2019 Approved
Studio 3T 2019.1.0 441 Tuesday, March 5, 2019 Approved
Studio 3T 2018.6.1 772 Saturday, December 22, 2018 Approved
Studio 3T 2018.6.0 294 Wednesday, December 19, 2018 Approved
Studio 3T 2018.5.1 501 Tuesday, November 20, 2018 Approved
Studio 3T 2018.5.0 396 Wednesday, November 7, 2018 Approved
Studio 3T 2018.4.6 514 Monday, October 8, 2018 Approved
Studio 3T 2018.4.5 317 Saturday, September 29, 2018 Approved
Studio 3T 2018.4.4 403 Thursday, September 20, 2018 Approved
Studio 3T 2018.4.3 383 Thursday, September 13, 2018 Approved
Studio 3T 2018.4.2 540 Tuesday, August 7, 2018 Approved
Studio 3T 2018.4.1 382 Wednesday, July 25, 2018 Approved
Studio 3T 2018.4.0 435 Friday, July 20, 2018 Approved
Studio 3T 2018.3.2 721 Friday, June 22, 2018 Approved
Studio 3T 2018.3.1 548 Tuesday, May 29, 2018 Approved
Studio 3T 2018.3.0 389 Friday, May 18, 2018 Approved
Studio 3T 2018.2.5 580 Tuesday, April 10, 2018 Approved
Studio 3T 2018.2.4 486 Friday, March 9, 2018 Approved
Studio 3T 2018.2.3 449 Tuesday, March 6, 2018 Approved
Studio 3T 2018.2.2 411 Saturday, March 3, 2018 Approved
Studio 3T 2018.2.1 429 Thursday, February 22, 2018 Approved
Studio 3T 2018.2.0 505 Friday, February 16, 2018 Approved
Studio 3T 2018.1.0 444 Thursday, February 8, 2018 Approved
Studio 3T 5.7.4 712 Thursday, January 18, 2018 Approved
Studio 3T 5.7.3 465 Thursday, January 11, 2018 Approved
Studio 3T 5.7.2 554 Wednesday, December 20, 2017 Approved
Studio 3T 5.7.1 511 Friday, December 8, 2017 Approved
Studio 3T 5.6.4 630 Friday, November 24, 2017 Approved
Studio 3T 5.6.3 632 Friday, November 3, 2017 Approved
Studio 3T 5.6.2 561 Wednesday, October 25, 2017 Approved
Studio 3T 5.6.1 567 Thursday, October 19, 2017 Approved
Studio 3T 5.5.1 642 Thursday, September 28, 2017 Approved
Studio 3T 5.5.0 635 Saturday, August 26, 2017 Approved
Studio 3T 5.4.0 750 Monday, July 24, 2017 Approved
Studio 3T 5.3.4 600 Monday, June 19, 2017 Approved
Studio 3T 5.3.3 480 Thursday, June 15, 2017 Approved
Studio 3T 5.3.2 450 Thursday, June 15, 2017 Approved
Studio 3T 5.3.1 471 Friday, June 9, 2017 Approved
Studio 3T 5.3.0.20170527 483 Saturday, May 27, 2017 Approved
Studio 3T 5.2.2 671 Thursday, April 20, 2017 Approved
Studio 3T 5.2.1 481 Wednesday, April 12, 2017 Approved
Studio 3T 5.2.0 447 Tuesday, April 11, 2017 Approved
Studio 3T 5.1.1 444 Monday, April 3, 2017 Approved
Studio 3T 5.1.0 547 Sunday, March 12, 2017 Approved
Studio 3T 5.0.1 594 Saturday, February 18, 2017 Approved

This package has no dependencies.

Discussion for the Studio 3T Package

Ground Rules:

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