Downloads:
64,840
Downloads of v 2024.4.1:
705
Last Update:
31 Oct 2024
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
- 1
- 2
- 3
2024.4.1 | Updated: 31 Oct 2024
- 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:
64,840
Downloads of v 2024.4.1:
705
Maintainer(s):
Software Author(s):
- 3T
Studio 3T 2024.4.1
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
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:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download studio3t --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
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: '2024.4.1'
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 '2024.4.1'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller studio3t
{
Name = "studio3t"
Version = "2024.4.1"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'studio3t':
ensure => '2024.4.1',
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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 02 Nov 2024.
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'
$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.2024.4.1.nupkg (0a2a03c4ad68) - ## / 67
- studio-3t-x64.zip (15c7175e5066) - ## / 62
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 2024.4.1 | 705 | Thursday, October 31, 2024 | Approved | |
Studio 3T 2024.4.0 | 737 | Monday, September 30, 2024 | Approved | |
Studio 3T 2024.3.1 | 1582 | Monday, June 10, 2024 | Approved | |
Studio 3T 2024.3.0 | 616 | Thursday, May 16, 2024 | Approved | |
Studio 3T 2024.2.0 | 1049 | Wednesday, March 13, 2024 | Approved | |
Studio 3T 2024.1.0 | 382 | Thursday, February 29, 2024 | Approved | |
Studio 3T 2023.9.0 | 1399 | Tuesday, November 28, 2023 | Approved | |
Studio 3T 2023.8.0 | 520 | Thursday, October 26, 2023 | Approved | |
Studio 3T 2023.7.0 | 336 | Thursday, October 12, 2023 | Approved | |
Studio 3T 2023.6.2 | 608 | Wednesday, September 20, 2023 | Approved | |
Studio 3T 2023.6.1 | 299 | Friday, September 8, 2023 | Approved | |
Studio 3T 2023.6.0 | 336 | Thursday, August 24, 2023 | Approved | |
Studio 3T 2023.5.0 | 916 | Tuesday, June 13, 2023 | Approved | |
Studio 3T 2023.4.1 | 475 | Wednesday, May 17, 2023 | Approved | |
Studio 3T 2023.4.0 | 317 | Thursday, May 4, 2023 | Approved | |
Studio 3T 2023.3.0 | 462 | Thursday, March 30, 2023 | Approved | |
Studio 3T 2023.2.0 | 358 | Thursday, March 16, 2023 | Approved | |
Studio 3T 2023.1.1 | 512 | Monday, February 13, 2023 | Approved | |
Studio 3T 2022.10.0 | 638 | Wednesday, December 7, 2022 | Approved | |
Studio 3T 2022.9.2 | 337 | Tuesday, November 15, 2022 | Approved | |
Studio 3T 2022.9.1 | 192 | Thursday, November 10, 2022 | Approved | |
Studio 3T 2022.9.0 | 230 | Monday, October 31, 2022 | Approved | |
Studio 3T 2022.8.3 | 393 | Friday, October 7, 2022 | Approved | |
Studio 3T 2022.8.2 | 151 | Tuesday, October 4, 2022 | Approved | |
Studio 3T 2022.8.1 | 403 | Wednesday, September 7, 2022 | Approved | |
Studio 3T 2022.8.0 | 205 | Thursday, September 1, 2022 | Approved | |
Studio 3T 2022.7.2 | 294 | Monday, August 15, 2022 | Approved | |
Studio 3T 2022.7.1 | 314 | Tuesday, July 26, 2022 | Exempted | |
Studio 3T 2022.7.0 | 194 | Thursday, July 21, 2022 | Exempted | |
Studio 3T 2022.6.1 | 302 | Monday, June 27, 2022 | Approved | |
Studio 3T 2022.6.0 | 185 | Tuesday, June 21, 2022 | Approved | |
Studio 3T 2022.5.0 | 281 | Thursday, May 19, 2022 | Exempted | |
Studio 3T 2022.4.1 | 299 | Wednesday, April 27, 2022 | Exempted | |
Studio 3T 2022.4.0 | 164 | Thursday, April 21, 2022 | Approved | |
Studio 3T 2022.3.0 | 294 | Monday, March 28, 2022 | Approved | |
Studio 3T 2022.2.0 | 330 | Thursday, February 24, 2022 | Approved | |
Studio 3T 2022.1.1 | 311 | Thursday, January 27, 2022 | Approved | |
Studio 3T 2021.10.1 | 513 | Tuesday, December 14, 2021 | Approved | |
Studio 3T 2021.10.0 | 261 | Thursday, December 9, 2021 | Approved | |
Studio 3T 2021.9.0 | 428 | Wednesday, November 10, 2021 | Approved | |
Studio 3T 2021.8.1 | 361 | Wednesday, October 20, 2021 | Exempted | |
Studio 3T 2021.8.0 | 243 | Wednesday, October 13, 2021 | Exempted | |
Studio 3T 2021.7.1 | 306 | Tuesday, September 21, 2021 | Approved | |
Studio 3T 2021.6.1 | 313 | Monday, August 30, 2021 | Exempted | |
Studio 3T 2021.6.0 | 207 | Tuesday, August 24, 2021 | Approved | |
Studio 3T 2021.5.1 | 367 | Wednesday, July 28, 2021 | Approved | |
Studio 3T 2021.5.0 | 341 | Tuesday, July 20, 2021 | Approved | |
Studio 3T 2021.4.1 | 376 | Thursday, July 1, 2021 | Approved | |
Studio 3T 2021.4.0 | 289 | Thursday, June 24, 2021 | Approved | |
Studio 3T 2021.3.1 | 364 | Wednesday, June 2, 2021 | Approved | |
Studio 3T 2021.3.0 | 280 | Tuesday, May 25, 2021 | Approved | |
Studio 3T 2021.2.0 | 974 | Tuesday, March 16, 2021 | Approved | |
Studio 3T 2021.1.1 | 468 | Thursday, February 11, 2021 | Approved | |
Studio 3T 2021.1.0 | 294 | Wednesday, February 3, 2021 | Approved | |
Studio 3T 2020.10.1 | 704 | Wednesday, December 16, 2020 | Approved | |
Studio 3T 2020.10.0 | 261 | Thursday, December 10, 2020 | Approved | |
Studio 3T 2020.9.3 | 658 | Wednesday, October 28, 2020 | Approved | |
Studio 3T 2020.9.2 | 281 | Wednesday, October 21, 2020 | Approved | |
Studio 3T 2020.9.1 | 173 | Tuesday, October 20, 2020 | Approved | |
Studio 3T 2020.9.0 | 268 | Thursday, October 15, 2020 | Approved | |
Studio 3T 2020.8.0 | 2404 | Thursday, September 10, 2020 | Approved | |
Studio 3T 2020.7.1 | 5137 | Sunday, August 16, 2020 | Approved | |
Studio 3T 2020.7.0 | 410 | Tuesday, July 28, 2020 | Approved | |
Studio 3T 2020.6.1 | 424 | Saturday, July 11, 2020 | Approved | |
Studio 3T 2020.6.0 | 265 | Saturday, July 4, 2020 | Approved | |
Studio 3T 2020.5.0 | 666 | Wednesday, May 13, 2020 | Approved | |
Studio 3T 2020.4.0 | 408 | Tuesday, April 14, 2020 | Approved | |
Studio 3T 2020.3.1 | 584 | Wednesday, March 11, 2020 | Approved | |
Studio 3T 2020.3.0 | 254 | Friday, March 6, 2020 | Approved | |
Studio 3T 2020.2.1 | 373 | Wednesday, February 19, 2020 | Approved | |
Studio 3T 2020.2.0 | 223 | Saturday, February 15, 2020 | Approved | |
Studio 3T 2020.1.2 | 361 | Friday, January 17, 2020 | Approved | |
Studio 3T 2020.1.1 | 302 | Friday, January 10, 2020 | Approved | |
Studio 3T 2020.1.0 | 237 | Tuesday, January 7, 2020 | Approved | |
Studio 3T 2019.7.1 | 512 | Tuesday, November 19, 2019 | Approved | |
Studio 3T 2019.7.0 | 225 | Wednesday, November 13, 2019 | Approved | |
Studio 3T 2019.6.1 | 442 | Tuesday, October 22, 2019 | Approved | |
Studio 3T 2019.6.0 | 313 | Tuesday, October 15, 2019 | Approved | |
Studio 3T 2019.5.1 | 400 | Thursday, September 19, 2019 | Approved | |
Studio 3T 2019.5.0 | 439 | Wednesday, August 28, 2019 | Approved | |
Studio 3T 2019.4.1 | 397 | Friday, August 2, 2019 | Approved | |
Studio 3T 2019.4.0 | 220 | Wednesday, July 31, 2019 | Approved | |
Studio 3T 2019.3.0 | 800 | Monday, June 3, 2019 | Approved | |
Studio 3T 2019.2.1 | 1044 | Monday, April 1, 2019 | Approved | |
Studio 3T 2019.2.0 | 394 | Friday, March 22, 2019 | Approved | |
Studio 3T 2019.1.0 | 420 | Tuesday, March 5, 2019 | Approved | |
Studio 3T 2018.6.1 | 752 | Saturday, December 22, 2018 | Approved | |
Studio 3T 2018.6.0 | 274 | Wednesday, December 19, 2018 | Approved | |
Studio 3T 2018.5.1 | 458 | Tuesday, November 20, 2018 | Approved | |
Studio 3T 2018.5.0 | 374 | Wednesday, November 7, 2018 | Approved | |
Studio 3T 2018.4.6 | 493 | Monday, October 8, 2018 | Approved | |
Studio 3T 2018.4.5 | 298 | Saturday, September 29, 2018 | Approved | |
Studio 3T 2018.4.4 | 376 | Thursday, September 20, 2018 | Approved | |
Studio 3T 2018.4.3 | 366 | Thursday, September 13, 2018 | Approved | |
Studio 3T 2018.4.2 | 513 | Tuesday, August 7, 2018 | Approved | |
Studio 3T 2018.4.1 | 357 | Wednesday, July 25, 2018 | Approved | |
Studio 3T 2018.4.0 | 411 | Friday, July 20, 2018 | Approved | |
Studio 3T 2018.3.2 | 699 | Friday, June 22, 2018 | Approved | |
Studio 3T 2018.3.1 | 517 | Tuesday, May 29, 2018 | Approved | |
Studio 3T 2018.3.0 | 359 | Friday, May 18, 2018 | Approved | |
Studio 3T 2018.2.5 | 553 | Tuesday, April 10, 2018 | Approved | |
Studio 3T 2018.2.4 | 470 | Friday, March 9, 2018 | Approved | |
Studio 3T 2018.2.3 | 426 | Tuesday, March 6, 2018 | Approved | |
Studio 3T 2018.2.2 | 373 | Saturday, March 3, 2018 | Approved | |
Studio 3T 2018.2.1 | 404 | Thursday, February 22, 2018 | Approved | |
Studio 3T 2018.2.0 | 481 | Friday, February 16, 2018 | Approved | |
Studio 3T 2018.1.0 | 424 | Thursday, February 8, 2018 | Approved | |
Studio 3T 5.7.4 | 697 | Thursday, January 18, 2018 | Approved | |
Studio 3T 5.7.3 | 442 | Thursday, January 11, 2018 | Approved | |
Studio 3T 5.7.2 | 529 | Wednesday, December 20, 2017 | Approved | |
Studio 3T 5.7.1 | 485 | Friday, December 8, 2017 | Approved | |
Studio 3T 5.6.4 | 609 | Friday, November 24, 2017 | Approved | |
Studio 3T 5.6.3 | 610 | Friday, November 3, 2017 | Approved | |
Studio 3T 5.6.2 | 522 | Wednesday, October 25, 2017 | Approved | |
Studio 3T 5.6.1 | 536 | Thursday, October 19, 2017 | Approved | |
Studio 3T 5.5.1 | 615 | Thursday, September 28, 2017 | Approved | |
Studio 3T 5.5.0 | 601 | Saturday, August 26, 2017 | Approved | |
Studio 3T 5.4.0 | 737 | Monday, July 24, 2017 | Approved | |
Studio 3T 5.3.4 | 575 | Monday, June 19, 2017 | Approved | |
Studio 3T 5.3.3 | 452 | Thursday, June 15, 2017 | Approved | |
Studio 3T 5.3.2 | 427 | Thursday, June 15, 2017 | Approved | |
Studio 3T 5.3.1 | 442 | Friday, June 9, 2017 | Approved | |
Studio 3T 5.3.0.20170527 | 458 | Saturday, May 27, 2017 | Approved | |
Studio 3T 5.2.2 | 639 | Thursday, April 20, 2017 | Approved | |
Studio 3T 5.2.1 | 450 | Wednesday, April 12, 2017 | Approved | |
Studio 3T 5.2.0 | 415 | Tuesday, April 11, 2017 | Approved | |
Studio 3T 5.1.1 | 415 | Monday, April 3, 2017 | Approved | |
Studio 3T 5.1.0 | 528 | Sunday, March 12, 2017 | Approved | |
Studio 3T 5.0.1 | 570 | 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.