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:

776,273

Downloads of v 4.10:

2,187

Last Update:

07 Jul 2019

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

4.10 | Updated: 07 Jul 2019

Downloads:

776,273

Downloads of v 4.10:

2,187

Maintainer(s):

Software Author(s):

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

pgAdmin 4 4.10

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="'4.10'" [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="'4.10'" 
$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: '4.10'
    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  '4.10'
end

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


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

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


package { 'pgadmin4':
  ensure   => '4.10',
  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 08 Aug 2019.

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
 
README.md
# pgAdmin 4

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.
tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'; # stop on all errors

$packageName = 'pgadmin4'
$toolsDir    = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url         = 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v4.10/windows/pgadmin4-4.10-x86.exe' # download url
$checksum    = '36c7e926243e558e43070b2ba362acc7e5508b77365f9d7cba52ddc81b1175a8'
$checksumType= 'sha256'

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

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

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

Install-ChocolateyPackage @packageArgs
update.ps1
Import-Module au
. $PSScriptRoot\..\_scripts\all.ps1

$releases = 'https://www.pgadmin.org/download/pgadmin-4-windows/'

function global:au_SearchReplace {
  @{
    ".\tools\chocolateyinstall.ps1" = @{
      "(?i)(^\s*[$]packageName\s*=\s*)('.*')" = "`$1'$($Latest.PackageName)'"
      "(?i)(^\s*[$]url\s*=\s*)('.*')" = "`$1'$($Latest.URL32)'"
      "(?i)(^\s*[$]checksum\s*=\s*)('.*')" = "`$1'$($Latest.Checksum32)'"
      "(?i)(^\s*[$]checksumType\s*=\s*)('.*')" = "`$1'$($Latest.ChecksumType32)'"
    }
  }
}

function global:au_GetLatest {
  $download_page = Invoke-WebRequest -Uri $releases -UseBasicParsing
  $regex   = '(?:/pgadmin/pgadmin4/v)(\d+(\.\d+)+)(?:/windows)'
  $url     = $download_page.links | Where-Object href -Match $regex | Select-Object -First 1 -Expand href
  $version = $url -replace ".*v(\d+(\.\d+)*).*",'$1'

  Write-Host $url $version

  $url32 = "https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${version}/windows/pgadmin4-${version}-x86.exe"

  return @{
    Version = $version

    URL32 = $url32
  }
}

Update-Package

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.4.0 1662 Tuesday, April 2, 2024 Approved
pgAdmin 4 8.2.0 5058 Thursday, February 1, 2024 Approved
pgAdmin 4 8.1.0 3401 Thursday, December 14, 2023 Approved
pgAdmin 4 8.0.0 2308 Friday, November 24, 2023 Approved
pgAdmin 4 7.8.0 3155 Friday, October 20, 2023 Approved
pgAdmin 4 7.7.0.20231017 825 Tuesday, October 17, 2023 Approved
pgAdmin 4 7.7.0 270 Tuesday, October 17, 2023 Approved
pgAdmin 4 6.13 245205 Friday, August 26, 2022 Approved
pgAdmin 4 6.12 56260 Friday, July 29, 2022 Approved
pgAdmin 4 6.11 50873 Friday, July 1, 2022 Approved
pgAdmin 4 6.10 50204 Friday, June 3, 2022 Approved
pgAdmin 4 6.9 43679 Friday, May 13, 2022 Approved
pgAdmin 4 6.8 66733 Friday, April 8, 2022 Approved
pgAdmin 4 6.7 9914 Sunday, March 27, 2022 Approved
pgAdmin 4 6.4 14852 Friday, January 14, 2022 Approved
pgAdmin 4 6.2 3920 Thursday, December 9, 2021 Approved
pgAdmin 4 6.1 4740 Friday, October 22, 2021 Approved
pgAdmin 4 6.0 2221 Wednesday, October 13, 2021 Approved
pgAdmin 4 5.7 4818 Friday, September 10, 2021 Approved
pgAdmin 4 5.6 475 Thursday, September 9, 2021 Approved
pgAdmin 4 5.5 3792 Wednesday, August 4, 2021 Approved
pgAdmin 4 5.4 5009 Friday, June 18, 2021 Approved
pgAdmin 4 5.3 1613 Friday, June 11, 2021 Approved
pgAdmin 4 5.2 3411 Monday, May 17, 2021 Approved
pgAdmin 4 5.1 4692 Tuesday, March 30, 2021 Approved
pgAdmin 4 5.0 2940 Wednesday, March 10, 2021 Approved
pgAdmin 4 4.30 9305 Tuesday, February 2, 2021 Approved
pgAdmin 4 4.29 4094 Friday, January 8, 2021 Approved
pgAdmin 4 4.28 9454 Thursday, November 12, 2020 Approved
pgAdmin 4 4.27 137 Thursday, November 12, 2020 Approved
pgAdmin 4 4.26.0.20201005 13423 Monday, October 5, 2020 Approved
pgAdmin 4 4.26 6284 Wednesday, September 30, 2020 Approved
pgAdmin 4 4.25 15485 Friday, August 21, 2020 Approved
pgAdmin 4 4.24 13928 Thursday, July 23, 2020 Approved
pgAdmin 4 4.23.0.20200720 2568 Tuesday, July 21, 2020 Approved
pgAdmin 4 4.23 1882 Thursday, July 2, 2020 Approved
pgAdmin 4 4.22 18071 Monday, June 8, 2020 Approved
pgAdmin 4 4.21 2913 Friday, May 8, 2020 Approved
pgAdmin 4 4.20 2382 Sunday, April 5, 2020 Approved
pgAdmin 4 4.19 3119 Sunday, March 8, 2020 Approved
pgAdmin 4 4.18 1541 Tuesday, February 25, 2020 Approved
pgAdmin 4 4.17 2590 Saturday, January 25, 2020 Approved
pgAdmin 4 4.16 1854 Thursday, January 9, 2020 Approved
pgAdmin 4 4.15 2479 Thursday, November 28, 2019 Approved
pgAdmin 4 4.14 2430 Sunday, October 27, 2019 Approved
pgAdmin 4 4.13 3199 Thursday, September 26, 2019 Approved
pgAdmin 4 4.12 1699 Thursday, September 12, 2019 Approved
pgAdmin 4 4.11 2750 Thursday, August 8, 2019 Approved
pgAdmin 4 4.10 2187 Sunday, July 7, 2019 Approved
pgAdmin 4 4.9 699 Wednesday, July 3, 2019 Approved
pgAdmin 4 4.8 1340 Wednesday, June 19, 2019 Approved
pgAdmin 4 4.7 1369 Sunday, June 2, 2019 Approved
pgAdmin 4 4.6 1788 Monday, May 6, 2019 Approved
pgAdmin 4 4.5 1534 Friday, April 12, 2019 Approved
pgAdmin 4 4.4 879 Sunday, April 7, 2019 Approved
pgAdmin 4 4.3 1737 Tuesday, March 12, 2019 Approved
pgAdmin 4 4.1 10111 Tuesday, January 22, 2019 Approved
pgAdmin 4 4.0 873 Monday, January 14, 2019 Approved
pgAdmin 4 3.6 1480 Saturday, December 15, 2018 Approved
pgAdmin 4 3.5 1616 Friday, November 16, 2018 Approved
pgAdmin 4 3.4 2432 Friday, October 12, 2018 Approved
pgAdmin 4 3.3 9416 Thursday, September 13, 2018 Approved
pgAdmin 4 3.2 3176 Tuesday, August 21, 2018 Approved
pgAdmin 4 3.1 3134 Thursday, June 28, 2018 Approved
pgAdmin 4 3.0 2368 Sunday, April 15, 2018 Approved
pgAdmin 4 2.1 2532 Tuesday, January 16, 2018 Approved
pgAdmin 4 2.0 2080 Wednesday, October 18, 2017 Approved
pgAdmin 4 1.6 1954 Sunday, July 23, 2017 Approved
pgAdmin 4 1.5 1286 Tuesday, May 23, 2017 Approved
pgAdmin 4 1.4 1015 Tuesday, April 18, 2017 Approved
pgAdmin 4 1.3 1016 Monday, March 13, 2017 Approved
pgAdmin 4 1.2 630 Friday, March 10, 2017 Approved
pgAdmin 4 1.1 784 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