Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...

Downloads:
30,269
Downloads of v 2019.5.0:
300
Last Update:
28 Aug 2019
Package Maintainer(s):
Software Author(s):
- 3T
Tags:
studio3t mongodb gui ide mongo nosql database db admin trial- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Studio 3T
This is not the latest version of Studio 3T available.
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
30,269
Downloads of v 2019.5.0:
300
Maintainer(s):
Software Author(s):
- 3T
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Studio 3T 2019.5.0
This is not the latest version of Studio 3T available.
All Checks are Passing
2 Passing Test
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:
NOTE: This applies to both open source and commercial editions of Chocolatey.
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://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
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download studio3t --internalize --version=2019.5.0 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade studio3t -y --source="'STEP 3 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="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure studio3t installed
win_chocolatey:
name: studio3t
state: present
version: 2019.5.0
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'studio3t' do
action :install
version '2019.5.0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: studio3t,
Version: 2019.5.0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller studio3t
{
Name = 'studio3t'
Ensure = 'Present'
Version = '2019.5.0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'studio3t':
provider => 'chocolatey',
ensure => '2019.5.0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install studio3t version="2019.5.0" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 28 Aug 2019.
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 or you can freely evaluate it for commercial purposes for 30 days.
$ErrorActionPreference = 'Stop'
$packageName = 'studio3t'
$url32 = 'https://download.studio3t.com/studio-3t/windows/2019.5.0/studio-3t-x86-no-shell.zip'
$checksum32 = '5c2b454f34e4277ddb7dc726fc01bcfa3a9162743c2836e60a3dac1b7314913c'
$checksumType32 = 'sha256'
$url64 = 'https://download.studio3t.com/studio-3t/windows/2019.5.0/studio-3t-x64.zip'
$checksum64 = '767f3617766dd0d469ba103ffb1f03628ea5909aa4dc3fe31e3d293f10164ee8'
$checksumType64 = 'sha256'
$toolsDir = "$(Split-Path -Parent $MyInvocation.MyCommand.Definition)"
. $toolsDir\helpers.ps1
Uninstall-OutdatedVersion
Install-ChocolateyZipPackage -PackageName $packageName `
-Url $url32 `
-Checksum $checksum32 `
-ChecksumType $checksumType32 `
-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
$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)" }
}
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.
- studio3t.2019.5.0.nupkg (4184a00753a3) - ## / 58
- studio-3t-x64.zip (767f3617766d) - ## / 56
- studio-3t-x86-no-shell.zip (5c2b454f34e4) - ## / 55
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Studio 3T 2020.10.1 | 431 | Wednesday, December 16, 2020 | Approved |
Studio 3T 2020.10.0 | 134 | Thursday, December 10, 2020 | Approved |
Studio 3T 2020.9.3 | 507 | Wednesday, October 28, 2020 | Approved |
Studio 3T 2020.9.2 | 163 | Wednesday, October 21, 2020 | Approved |
Studio 3T 2020.9.1 | 48 | Tuesday, October 20, 2020 | Approved |
Studio 3T 2020.9.0 | 163 | Thursday, October 15, 2020 | Approved |
Studio 3T 2020.8.0 | 2276 | Thursday, September 10, 2020 | Approved |
Studio 3T 2020.7.1 | 4983 | Sunday, August 16, 2020 | Approved |
Studio 3T 2020.7.0 | 266 | Tuesday, July 28, 2020 | Approved |
Studio 3T 2020.6.1 | 280 | Saturday, July 11, 2020 | Approved |
Studio 3T 2020.6.0 | 145 | Saturday, July 4, 2020 | Approved |
Studio 3T 2020.5.0 | 526 | Wednesday, May 13, 2020 | Approved |
Studio 3T 2020.4.0 | 283 | Tuesday, April 14, 2020 | Approved |
Studio 3T 2020.3.1 | 382 | Wednesday, March 11, 2020 | Approved |
Studio 3T 2020.3.0 | 131 | Friday, March 6, 2020 | Approved |
Studio 3T 2020.2.1 | 239 | Wednesday, February 19, 2020 | Approved |
Studio 3T 2020.2.0 | 110 | Saturday, February 15, 2020 | Approved |
Studio 3T 2020.1.2 | 241 | Friday, January 17, 2020 | Approved |
Studio 3T 2020.1.1 | 145 | Friday, January 10, 2020 | Approved |
Studio 3T 2020.1.0 | 115 | Tuesday, January 7, 2020 | Approved |
Studio 3T 2019.7.1 | 366 | Tuesday, November 19, 2019 | Approved |
Studio 3T 2019.7.0 | 105 | Wednesday, November 13, 2019 | Approved |
Studio 3T 2019.6.1 | 295 | Tuesday, October 22, 2019 | Approved |
Studio 3T 2019.6.0 | 151 | Tuesday, October 15, 2019 | Approved |
Studio 3T 2019.5.1 | 261 | Thursday, September 19, 2019 | Approved |
Studio 3T 2019.5.0 | 300 | Wednesday, August 28, 2019 | Approved |
Studio 3T 2019.4.1 | 259 | Friday, August 2, 2019 | Approved |
Studio 3T 2019.4.0 | 94 | Wednesday, July 31, 2019 | Approved |
Studio 3T 2019.3.0 | 525 | Monday, June 3, 2019 | Approved |
Studio 3T 2019.2.1 | 778 | Monday, April 1, 2019 | Approved |
Studio 3T 2019.2.0 | 243 | Friday, March 22, 2019 | Approved |
Studio 3T 2019.1.0 | 271 | Tuesday, March 5, 2019 | Approved |
Studio 3T 2018.6.1 | 566 | Saturday, December 22, 2018 | Approved |
Studio 3T 2018.6.0 | 142 | Wednesday, December 19, 2018 | Approved |
Studio 3T 2018.5.1 | 339 | Tuesday, November 20, 2018 | Approved |
Studio 3T 2018.5.0 | 241 | Wednesday, November 7, 2018 | Approved |
Studio 3T 2018.4.6 | 363 | Monday, October 8, 2018 | Approved |
Studio 3T 2018.4.5 | 185 | Saturday, September 29, 2018 | Approved |
Studio 3T 2018.4.4 | 226 | Thursday, September 20, 2018 | Approved |
Studio 3T 2018.4.3 | 230 | Thursday, September 13, 2018 | Approved |
Studio 3T 2018.4.2 | 359 | Tuesday, August 7, 2018 | Approved |
Studio 3T 2018.4.1 | 224 | Wednesday, July 25, 2018 | Approved |
Studio 3T 2018.4.0 | 255 | Friday, July 20, 2018 | Approved |
Studio 3T 2018.3.2 | 494 | Friday, June 22, 2018 | Approved |
Studio 3T 2018.3.1 | 344 | Tuesday, May 29, 2018 | Approved |
Studio 3T 2018.3.0 | 234 | Friday, May 18, 2018 | Approved |
Studio 3T 2018.2.5 | 406 | Tuesday, April 10, 2018 | Approved |
Studio 3T 2018.2.4 | 347 | Friday, March 9, 2018 | Approved |
Studio 3T 2018.2.3 | 289 | Tuesday, March 6, 2018 | Approved |
Studio 3T 2018.2.2 | 236 | Saturday, March 3, 2018 | Approved |
Studio 3T 2018.2.1 | 274 | Thursday, February 22, 2018 | Approved |
Studio 3T 2018.2.0 | 337 | Friday, February 16, 2018 | Approved |
Studio 3T 2018.1.0 | 288 | Thursday, February 8, 2018 | Approved |
Studio 3T 5.7.4 | 541 | Thursday, January 18, 2018 | Approved |
Studio 3T 5.7.3 | 305 | Thursday, January 11, 2018 | Approved |
Studio 3T 5.7.2 | 369 | Wednesday, December 20, 2017 | Approved |
Studio 3T 5.7.1 | 336 | Friday, December 8, 2017 | Approved |
Studio 3T 5.6.4 | 454 | Friday, November 24, 2017 | Approved |
Studio 3T 5.6.3 | 473 | Friday, November 3, 2017 | Approved |
Studio 3T 5.6.2 | 365 | Wednesday, October 25, 2017 | Approved |
Studio 3T 5.6.1 | 380 | Thursday, October 19, 2017 | Approved |
Studio 3T 5.5.1 | 451 | Thursday, September 28, 2017 | Approved |
Studio 3T 5.5.0 | 427 | Saturday, August 26, 2017 | Approved |
Studio 3T 5.4.0 | 566 | Monday, July 24, 2017 | Approved |
Studio 3T 5.3.4 | 440 | Monday, June 19, 2017 | Approved |
Studio 3T 5.3.3 | 322 | Thursday, June 15, 2017 | Approved |
Studio 3T 5.3.2 | 274 | Thursday, June 15, 2017 | Approved |
Studio 3T 5.3.1 | 315 | Friday, June 9, 2017 | Approved |
Studio 3T 5.3.0.20170527 | 324 | Saturday, May 27, 2017 | Approved |
Studio 3T 5.2.2 | 471 | Thursday, April 20, 2017 | Approved |
Studio 3T 5.2.1 | 315 | Wednesday, April 12, 2017 | Approved |
Studio 3T 5.2.0 | 282 | Tuesday, April 11, 2017 | Approved |
Studio 3T 5.1.1 | 288 | Monday, April 3, 2017 | Approved |
Studio 3T 5.1.0 | 386 | Sunday, March 12, 2017 | Approved |
Studio 3T 5.0.1 | 436 | Saturday, February 18, 2017 | Approved |
2014-2018 3T Software Labs GmbH
This package has no dependencies.
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.