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:

771,048

Downloads of v 1.4:

1,010

Last Update:

18 Apr 2017

Package Maintainer(s):

Software Author(s):

  • The PostgreSQL Global Development Group
  • Current Maintainer: Dave Page

Tags:

pgadmin4 pgadmin postgres postgresql admin

pgAdmin 4

This is not the latest version of pgAdmin 4 available.

  • 1
  • 2
  • 3

1.4 | Updated: 18 Apr 2017

Downloads:

771,048

Downloads of v 1.4:

1,010

Maintainer(s):

Software Author(s):

  • The PostgreSQL Global Development Group
  • Current Maintainer: Dave Page

pgAdmin 4 1.4

This is not the latest version of pgAdmin 4 available.

  • 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 pgAdmin 4, run the following command from the command line or from PowerShell:

>

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

>

To uninstall pgAdmin 4, 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 pgadmin4 -y --source="'INTERNAL REPO URL'" --version="'1.4'" [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 pgadmin4 -y --source="'INTERNAL REPO URL'" --version="'1.4'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install pgadmin4
  win_chocolatey:
    name: pgadmin4
    version: '1.4'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'pgadmin4' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.4'
end

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


cChocoPackageInstaller pgadmin4
{
    Name     = "pgadmin4"
    Version  = "1.4"
    Source   = "INTERNAL REPO URL"
}

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


package { 'pgadmin4':
  ensure   => '1.4',
  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 by moderator AdmiringWorm on 18 Apr 2017.

Description

pgAdmin is the most popular and feature rich Open Source administration and development platform for PostgreSQL, the most advanced Open Source database in the world.

pgAdmin is designed to answer the needs of all users, from writing simple SQL queries to developing complex databases. The graphical interface supports all PostgreSQL features and makes administration easy. The application also includes a syntax highlighting SQL editor, a server-side code editor, an SQL/batch/shell job scheduling agent, support for the Slony-I replication engine and much more. Server connection may be made using TCP/IP or Unix Domain Sockets (on *nix platforms), and may be SSL encrypted for security. No additional drivers are required to communicate with the database server.


pgadmin4-220px.png
 
tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'; # stop on all errors

$packageName = 'pgadmin4'
$version     = "1.4"
$toolsDir    = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url         = 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.4/windows/pgadmin4-1.4-x86.exe' # download url
$checksum    = "3045D5A3DBE0ECD626411AAF73AC600614EE175D4743FF945F0CE3F9EE857F5B"

$packageArgs = @{
  packageName   = $packageName
  unzipLocation = $toolsDir
  fileType      = 'EXE'
  url           = $url

  silentArgs   = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' # Inno Setup
  validExitCodes= @(0)

  softwareName  = 'pgAdmin 4'
  checksum      = $checksum
  checksumType  = 'sha256'
}

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
pgAdmin 4 8.1.0 3393 Thursday, December 14, 2023 Approved
pgAdmin 4 8.0.0 2308 Friday, November 24, 2023 Approved
pgAdmin 4 7.8.0 3145 Friday, October 20, 2023 Approved
pgAdmin 4 7.7.0.20231017 821 Tuesday, October 17, 2023 Approved
pgAdmin 4 7.7.0 268 Tuesday, October 17, 2023 Approved
pgAdmin 4 6.13 245196 Friday, August 26, 2022 Approved
pgAdmin 4 6.12 56254 Friday, July 29, 2022 Approved
pgAdmin 4 6.11 50870 Friday, July 1, 2022 Approved
pgAdmin 4 6.10 50201 Friday, June 3, 2022 Approved
pgAdmin 4 6.9 43676 Friday, May 13, 2022 Approved
pgAdmin 4 6.8 66731 Friday, April 8, 2022 Approved
pgAdmin 4 6.7 9908 Sunday, March 27, 2022 Approved
pgAdmin 4 6.4 14849 Friday, January 14, 2022 Approved
pgAdmin 4 6.2 3917 Thursday, December 9, 2021 Approved
pgAdmin 4 6.1 4738 Friday, October 22, 2021 Approved
pgAdmin 4 6.0 2217 Wednesday, October 13, 2021 Approved
pgAdmin 4 5.7 4775 Friday, September 10, 2021 Approved
pgAdmin 4 5.6 471 Thursday, September 9, 2021 Approved
pgAdmin 4 5.5 3791 Wednesday, August 4, 2021 Approved
pgAdmin 4 5.4 5004 Friday, June 18, 2021 Approved
pgAdmin 4 5.3 1609 Friday, June 11, 2021 Approved
pgAdmin 4 5.2 3410 Monday, May 17, 2021 Approved
pgAdmin 4 5.1 4690 Tuesday, March 30, 2021 Approved
pgAdmin 4 5.0 2937 Wednesday, March 10, 2021 Approved
pgAdmin 4 4.30 9137 Tuesday, February 2, 2021 Approved
pgAdmin 4 4.29 4088 Friday, January 8, 2021 Approved
pgAdmin 4 4.28 9449 Thursday, November 12, 2020 Approved
pgAdmin 4 4.27 131 Thursday, November 12, 2020 Approved
pgAdmin 4 4.26.0.20201005 13414 Monday, October 5, 2020 Approved
pgAdmin 4 4.26 6279 Wednesday, September 30, 2020 Approved
pgAdmin 4 4.25 15481 Friday, August 21, 2020 Approved
pgAdmin 4 4.24 13923 Thursday, July 23, 2020 Approved
pgAdmin 4 4.23.0.20200720 2564 Tuesday, July 21, 2020 Approved
pgAdmin 4 4.23 1879 Thursday, July 2, 2020 Approved
pgAdmin 4 4.22 18067 Monday, June 8, 2020 Approved
pgAdmin 4 4.21 2910 Friday, May 8, 2020 Approved
pgAdmin 4 4.20 2377 Sunday, April 5, 2020 Approved
pgAdmin 4 4.19 3112 Sunday, March 8, 2020 Approved
pgAdmin 4 4.18 1535 Tuesday, February 25, 2020 Approved
pgAdmin 4 4.17 2584 Saturday, January 25, 2020 Approved
pgAdmin 4 4.16 1844 Thursday, January 9, 2020 Approved
pgAdmin 4 4.15 2475 Thursday, November 28, 2019 Approved
pgAdmin 4 4.14 2423 Sunday, October 27, 2019 Approved
pgAdmin 4 4.13 3193 Thursday, September 26, 2019 Approved
pgAdmin 4 4.12 1694 Thursday, September 12, 2019 Approved
pgAdmin 4 4.11 2746 Thursday, August 8, 2019 Approved
pgAdmin 4 4.10 2183 Sunday, July 7, 2019 Approved
pgAdmin 4 4.9 695 Wednesday, July 3, 2019 Approved
pgAdmin 4 4.8 1336 Wednesday, June 19, 2019 Approved
pgAdmin 4 4.7 1364 Sunday, June 2, 2019 Approved
pgAdmin 4 4.6 1785 Monday, May 6, 2019 Approved
pgAdmin 4 4.5 1528 Friday, April 12, 2019 Approved
pgAdmin 4 4.4 876 Sunday, April 7, 2019 Approved
pgAdmin 4 4.3 1736 Tuesday, March 12, 2019 Approved
pgAdmin 4 4.1 10106 Tuesday, January 22, 2019 Approved
pgAdmin 4 4.0 869 Monday, January 14, 2019 Approved
pgAdmin 4 3.6 1479 Saturday, December 15, 2018 Approved
pgAdmin 4 3.5 1614 Friday, November 16, 2018 Approved
pgAdmin 4 3.4 2429 Friday, October 12, 2018 Approved
pgAdmin 4 3.3 9412 Thursday, September 13, 2018 Approved
pgAdmin 4 3.2 3174 Tuesday, August 21, 2018 Approved
pgAdmin 4 3.1 3130 Thursday, June 28, 2018 Approved
pgAdmin 4 3.0 2364 Sunday, April 15, 2018 Approved
pgAdmin 4 2.1 2528 Tuesday, January 16, 2018 Approved
pgAdmin 4 2.0 2075 Wednesday, October 18, 2017 Approved
pgAdmin 4 1.6 1950 Sunday, July 23, 2017 Approved
pgAdmin 4 1.5 1282 Tuesday, May 23, 2017 Approved
pgAdmin 4 1.4 1010 Tuesday, April 18, 2017 Approved
pgAdmin 4 1.3 1012 Monday, March 13, 2017 Approved
pgAdmin 4 1.2 628 Friday, March 10, 2017 Approved
pgAdmin 4 1.1 780 Tuesday, December 13, 2016 Approved

This package has no dependencies.

Discussion for the pgAdmin 4 Package

Ground Rules:

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